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); })();