您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes the annoying "People also search for" box that pops up in Google Search and causes layout shift after a navigation.
// ==UserScript== // @name Remove "People Also Search For" Box // @namespace Violentmonkey Scripts // @match https://www.google.com/search* // @grant none // @license MIT // @version 1.1 // @author Thomas Orlita // @description Removes the annoying "People also search for" box that pops up in Google Search and causes layout shift after a navigation. // @homepageURL https://github.com/ThomasOrlita/remove-people-also-search-for-box // @icon https://lh3.googleusercontent.com/p2DRlj5cKHhXhUSkeD1q3qVIptdOFc4X7K-qodU1kyzhKnQBXPn1P5ECXed5GMdMoiSJufKXKcQnieTVuY6twgXoXA=w128-h128-e365-rj-sc0x00ffffff // ==/UserScript== // removes the "people also search for" box document.querySelectorAll('div[id^=eob], div[id^=aob]').forEach(e => { const parentElement = e.parentElement; e.remove(); parentElement.style.height = 'auto'; });