hideGoogleSearchAds

Hide ad results in google search

// ==UserScript==
// @name         hideGoogleSearchAds
// @description  Hide ad results in google search
// @author       David K Johnson
// @license      MIT License
// @icon         https://www.google.com/favicon.ico
// @match        *://*.google.com/search*
// @grant        none
// @version      1.0
// @run-at       document-end
// @namespace    https://gf.qytechs.cn/users/572366
// ==/UserScript==

document.getElementById("tvcap").remove();
document.getElementById("tadsb").remove();

var sideads = document.getElementsByClassName('cu-container');
for (let i = 0; i < sideads.length; i++) {
    sideads.item(i).remove();
}

QingJ © 2025

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