Last active
May 20, 2024 03:06
-
-
Save gsajith/26629463078b38d4ba1a944091b5f4a3 to your computer and use it in GitHub Desktop.
Hide Google AI Overview
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Hide Google AI Overview | |
// @namespace https://gsajith.com/ | |
// @version 2024-05-19 | |
// @description Hide AI Panel in Google search | |
// @author https://twitter.com/guamhat | |
// @match https://www.google.com/search?q=* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=google.com | |
// @run-at document-end | |
// @grant none | |
// ==/UserScript== | |
document.querySelector("[jscontroller='qTdDb']")?.remove(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment