Created
October 4, 2025 05:45
-
-
Save mikecat/f6904ef045dd6f6ef334eeda76c2cda1 to your computer and use it in GitHub Desktop.
Google「AI による概要」を隠す
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 Google「AI による概要」を隠す | |
| // @description Googleの「AI による概要」を隠します。 | |
| // @include https://www.google.com/* | |
| // @version 1.0.0 | |
| // @grant none | |
| // ==/UserScript== | |
| window.addEventListener("DOMContentLoaded", () => { | |
| const target = document.getElementById("eKIzJc"); | |
| if (target) target.style.visibility = "hidden"; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment