Greasy Fork is available in English.

禁止弹窗、弹框

禁止alert弹窗

// ==UserScript==
// @name         禁止弹窗、弹框
// @namespace    http://ccvxx.cn/
// @version      0.1
// @description  禁止alert弹窗
// @author       涼城
// @match             *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

window.alert = function() {
    return false;
}

    // Your code here...
})();