您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Block the "...also search for..." and "...also ask" boxes in Google search results. Does not rely on hardcoded class names, so it's more future proof.
Github page: https://github.com/dymk/block-google-also-search-for
The "People also search for" box pops up dynamically, and after a slight delay, causing everything under it to reposition itself. This looks for those elements and removes them.
This is a userscript, so install using your favorite userscript host, such as Greasemonkey or Tampermonkey.
The elements are queried using XPath, rather than using CSS class selectors. Many existing scripts and blockers for the "People also search for" box will fail after some time, as the CSS selector names that Google uses are minified/obfuscated/generated, and thus change over time.
Using an XPath query should prove more resilient, as it looks at the text of HTML attributes (which doesn't change, at least as often).
Google may decide to change the underlying structure of the HTML on the Search Results page, which may break this plugin in the future, but it should be a matter of "just" recomputing how many div
elements to select upwards.