NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Google AdSense Ads Remover // @description Removes Google ads from its search results // @icon https://www.google.com/adsense/start/images/favicon.ico // @author ner0 // @copyright 2020, ner0 (https://openuserjs.org/users/ner0) // @license MIT // @version 0.1 // @supportURL https://openuserjs.org/scripts/ner0/Google_AdSense_Ads_Remover/issues // @updateURL https://openuserjs.org/meta/ner0/Google_AdSense_Ads_Remover.meta.js // @downloadURL https://openuserjs.org/install/ner0/Google_AdSense_Ads_Remover.user.js // // @grant none // @include https://www.google.*/search* // ==/UserScript== // Find all ads-ad class elements and remove them from the page document.querySelectorAll(".ads-ad").forEach(element => element.remove());