This removes the AI Overview section at the top of Google Search.
目前為
// ==UserScript==
// @name Google Search - Remove AI Overview
// @version 1.0.1
// @description This removes the AI Overview section at the top of Google Search.
// @author makewebsitesbetter
// @namespace userscripts
// @icon https://i.postimg.cc/3NMLffrh/greenbox.png
// @include *google.*/search?*
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @require https://update.greasyfork.org/scripts/383527/701631/Wait_for_key_elements.js
// @license MIT
// ==/UserScript==
waitForKeyElements ("h1:contains('AI Overview')", RemoveAIOverview);
function RemoveAIOverview (jNode) {jNode.parent().parent().parent().parent().parent().parent().parent().parent().css({"display" : "none"});}
waitForKeyElements ("div[role='listitem']:contains('AI Mode')", MoveAiModeTab);
function MoveAiModeTab (jNode) {var target = $("div[role='listitem']:contains('Short videos')"); target.after(jNode);}