NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name youtube.com - Clean Up Homepage // @description Removes clutter from Youtube homepage (recommended videos) // @namespace yuriy.ershov@gmail.com // @match *://www.youtube.com/* // @run-at document-idle // @noframes // @version 1.0 // @copyright 2020, Yury Ershov <yuriy.ershov@gmail.com> // @license MIT; https://spdx.org/licenses/ // @author Yury Ershov <yuriy.ershov@gmail.com> // @homepageURL https://github.com/ershov/userscripts // @homepageURL https://greasyfork.org/en/scripts?q=ershov // @homepageURL https://openuserjs.org/scripts/ershov/ // @supportURL https://github.com/ershov/userscripts/issues // @grant none // @inject-into content // ==/UserScript== // ==OpenUserJS== // @author ershov // @collaborator ershov // ==/OpenUserJS== /* jshint esversion: 6 */ (function() { 'use strict'; [...document.querySelectorAll("ytd-browse[page-subtype=home]")].forEach(e=>e.remove()); })();