Greasy Fork 支持简体中文。

YouTube remove trending

YouTube remove trending tab

  1. // ==UserScript==
  2. // @name YouTube remove trending
  3. // @namespace http://nodebuck.de/
  4. // @version 0.1
  5. // @description YouTube remove trending tab
  6. // @author Nodebuck
  7. // @match *://www.youtube.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. Array.prototype.forEach.call(document.querySelectorAll("*[href=\"/feed/trending\"]"), function( node ) {
  12. node.parentNode.removeChild(node);
  13. });