屏蔽信息框

屏蔽网页上的alert信息框

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