Google - Without sponsor links

Remove sponsored google links from google search results

目前为 2024-12-28 提交的版本。查看 最新版本

// ==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
// ==/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();
        }
    }
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址