// ==UserScript== // @name Google - Without sponsor links // @namespace http://tampermonkey.net/ // @version 0.1 // @description Remove sponsored google links from google search results // @author jimonthebarn // @match https://www.google.com/* // @match https://www.google.de/* // @icon https://cdn.iconscout.com/icon/free/png-256/free-google-1772223-1507807.png // @license MIT // @downloadURL none // ==/UserScript== const elements = [ '#taw' ]; elements.forEach((elementSelector) => { (new MutationObserver(check)).observe(document, {childList: true, subtree: true}); function check(changes, observer) { let element = document.querySelector(elementSelector); if (element) { observer.disconnect(); element.remove(); } } });