Greasy Fork is available in English.
Removes Google Search Ads
当前为
// ==UserScript==
// @name Google NoAds
// @namespace http://tampermonkey.net
// @version 0.1
// @description Removes Google Search Ads
// @author You
// @match https://*.google.com/*
// @icon https://www.google.com/s2/favicons?domain=google.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementById("bottomads") && document.getElementById("bottomads").remove()
document.getElementById("tvcap") && document.getElementById("tvcap").remove()
})();