GitHub Confirm Auto Select-All

GitHub Confirm Auto Select All

  1. // ==UserScript==
  2. // @name GitHub Confirm Auto Select-All
  3. // @namespace _s7util__
  4. // @version 0.1
  5. // @description GitHub Confirm Auto Select All
  6. // @author shc0743
  7. // @match *://github.com/*/*/settings
  8. // @grant none
  9. // @license GPL-3.0
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. var css = document.createElement('style');
  16. css.innerHTML = `
  17. .details-reset > .Box > .Box-footer > p > strong {
  18. user-select: all;
  19. }
  20. `;
  21. (document.head || document.documentElement).append(css);
  22. })();