Greasy Fork is available in English.

Google去广告

谷歌去广告插件。

// ==UserScript==
// @name         Google去广告
// @namespace    all-round
// @version      1.0.2 更新简介
// @description  谷歌去广告插件。
// @author       You
// @match        https://www.google.com/*
// @includ       https://www.google.com/*
// @grant        none
// @author       BennieNiu: ibaeniu@gmail.com
// @license MIT
// ==/UserScript==

(function () {
    'use strict';

    function deleteGoogleAds() {
        document.getElementById("tads").remove();
    }
    deleteGoogleAds();
})();