// ==UserScript== // @name 谷歌安全搜索隐藏 // @namespace http://tampermonkey.net/ // @version 2025-03-15 // @description 隐藏谷歌安全搜索元素,管住小手 // @author You // @match http://*/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... let safeSearchNode = document.getElementById('taw') safeSearchNode.remove() })();