Remove sponsored google links from google search results
当前为
// ==UserScript==
// @name Google - Without sponsor links
// @namespace http://tampermonkey.net/
// @version 2024-10-10
// @description Remove sponsored google links from google search results
// @author jimonthebarn
// @match https://www.google.com/*
// @icon https://cdn.iconscout.com/icon/free/png-256/free-google-1772223-1507807.png
// @license MIT
// ==/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();
}
}
});