// ==UserScript== // @name 屏蔽信息框 // @namespace https://greasyfork.org/zh-CN/users/707063-genexy // @version 202011252030 // @description 屏蔽网页上的alert信息框 // @author 流浪的蛊惑 // @match *://*/* // @run-at document-start // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.alert=null; })();