Disable Google People Auto Search For

Disable the annoying auto search for box in Google Search Page

// ==UserScript==
// @name         Disable Google People Auto Search For
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Disable the annoying auto search for box in Google Search Page
// @author       DickyT <[email protected]>
// @match        https://www.google.com/search*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    const styleBlock = document.createElement('style');
    styleBlock.innerHTML = 'div[jscontroller][id][jsaction][jsdata][data-ved] div[jsname][data-ved] {display:none !important;}';
    document.head.append(styleBlock);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址