YouTube remove trending

YouTube remove trending tab

目前为 2015-12-12 提交的版本。查看 最新版本

// ==UserScript==
// @name         YouTube remove trending
// @namespace    http://nodebuck.de/
// @version      0.1
// @description  YouTube remove trending tab
// @author       Nodebuck
// @match        *://www.youtube.com/*
// @grant        none
// ==/UserScript==

Array.prototype.forEach.call(document.querySelectorAll("*[href=\"/feed/trending\"]"), function( node ) {
    node.parentNode.removeChild(node);
});