屏蔽网页上的alert信息框
当前为
// ==UserScript==
// @name 屏蔽信息框
// @namespace https://greasyfork.org/zh-CN/users/707063-genexy
// @version 202111231955
// @description 屏蔽网页上的alert信息框
// @author 流浪的蛊惑
// @match *://*/*
// @run-at document-idle
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
window.alert=function(e){console.log(e);};
})();