Remove YouTube Ads and Recommendations

Removes advertising and recommendations on YouTube In the search results.

  1. // ==UserScript==
  2. // @name Remove YouTube Ads and Recommendations
  3. // @namespace https://greasyfork.org/users/1443511
  4. // @version 1.0
  5. // @description Removes advertising and recommendations on YouTube In the search results.
  6. // @author for.ever
  7. // @match *://www.youtube.com/*
  8. // @require https://cdn.jsdelivr.net/npm/arrive@2.4.1/minified/arrive.min.js
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. document.arrive('ytd-ad-slot-renderer.style-scope.ytd-item-section-renderer', function() {
  16. this.remove();
  17. });
  18. document.arrive('ytd-search-pyv-renderer.style-scope.ytd-item-section-renderer', function() {
  19. this.remove();
  20. });
  21. })();