您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
hide annoying popup below most recently visited the search result
// ==UserScript== // @name Google Search - Hide "People also search for" // @namespace https://zachhardesty.com // @author Zach Hardesty <[email protected]> (https://github.com/zachhardesty7) // @description hide annoying popup below most recently visited the search result // @copyright 2019-2024, Zach Hardesty (https://zachhardesty.com/) // @license GPL-3.0-only; http://www.gnu.org/licenses/gpl-3.0.txt // @version 1.1.4 // @homepageURL https://github.com/zachhardesty7/tamper-monkey-scripts-collection/raw/master/google-hide-search-interruptions.user.js // @homepage https://github.com/zachhardesty7/tamper-monkey-scripts-collection/raw/master/google-hide-search-interruptions.user.js // @homepageURL https://openuserjs.org/scripts/zachhardesty7/Google_Search_-_Hide_People_also_search_for // @homepage https://openuserjs.org/scripts/zachhardesty7/Google_Search_-_Hide_People_also_search_for // @supportURL https://github.com/zachhardesty7/tamper-monkey-scripts-collection/issues // @match https://www.google.com/search/* // @require https://gf.qytechs.cn/scripts/419640-onelementready/code/onElementReady.js?version=887637 // ==/UserScript== /* global onElementReady */ // only operate once necessary el has loaded onElementReady(".exp-outline", { findOnce: true }, (el) => { // remove text el.parentElement.querySelector("div").querySelector(":nth-child(3)").remove() el.remove() // remove border })
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址