// ==UserScript== // @name [Website] Google Search - Remove AI Overview // @version 1.0.0 // @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?* // @run-at document-start // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js // @require https://update.greasyfork.icu/scripts/383527/701631/Wait_for_key_elements.js // @license MIT // @downloadURL none // ==/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);}