Hide Google AI Overview

Hides the Google AI Overview section

目前為 2025-01-02 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Hide Google AI Overview
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Hides the Google AI Overview section
// @author       Drewby123
// @match        *://*/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const hideDiv = () => {
      const targetDiv = document.querySelector('div[class="bzXtMb M8OgIe"]');
      targetDiv.style.display = 'none';
    };

    document.addEventListener('DOMContentLoaded', hideDiv);
    new MutationObserver(hideDiv).observe(document.body, { childList: true, subtree: true });
})();