Greasy Fork 支持简体中文。

YouTube ScrollBar Remove

New version of youtube get scrollbar, i don't want !

  1. // ==UserScript==
  2. // @name YouTube ScrollBar Remove
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description New version of youtube get scrollbar, i don't want !
  6. // @author Smax2k8
  7. // @include https://www.youtube.com/*
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. GM_addStyle("body:not(.style-scope)[standardized-themed-scrollbar]:not(.style-scope):not([no-y-overflow]):not(.style-scope)::-webkit-scrollbar {width: 0px!important;}");
  14. })();