Edge auto-hide scrollbar

Auto-hide scrollbar in Microsoft Edge browser

  1. // ==UserScript==
  2. // @name Edge auto-hide scrollbar
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Auto-hide scrollbar in Microsoft Edge browser
  6. // @author allsoundsthesame
  7. // @match *://*/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. function addGlobalStyle(css) {
  12. var head, style;
  13. head = document.getElementsByTagName('head')[0];
  14. if (!head) { return; }
  15. style = document.createElement('style');
  16. style.type = 'text/css';
  17. style.innerHTML = css;
  18. head.appendChild(style);
  19. }
  20. addGlobalStyle('html { -ms-overflow-style: -ms-autohiding-scrollbar }');