Skip to content

Instantly share code, notes, and snippets.

@mikecat
Created October 4, 2025 05:45
Show Gist options
  • Select an option

  • Save mikecat/f6904ef045dd6f6ef334eeda76c2cda1 to your computer and use it in GitHub Desktop.

Select an option

Save mikecat/f6904ef045dd6f6ef334eeda76c2cda1 to your computer and use it in GitHub Desktop.
Google「AI による概要」を隠す
// ==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