Hides the Google AI Overview section
当前为
// ==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 });
})();