Removes advertising and recommendations on YouTube In the search results.
// ==UserScript== // @name Remove YouTube Ads and Recommendations // @namespace https://greasyfork.org/users/1443511 // @version 1.0 // @description Removes advertising and recommendations on YouTube In the search results. // @author for.ever // @match *://www.youtube.com/* // @require https://cdn.jsdelivr.net/npm/[email protected]/minified/arrive.min.js // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; document.arrive('ytd-ad-slot-renderer.style-scope.ytd-item-section-renderer', function() { this.remove(); }); document.arrive('ytd-search-pyv-renderer.style-scope.ytd-item-section-renderer', function() { this.remove(); }); })();