Greasy Fork 支持简体中文。

Alert Killer

Overwrites alert()

目前為 2017-11-01 提交的版本,檢視 最新版本

// ==UserScript==
// @id              alert-killer
// @name            Alert Killer
// @description     Overwrites alert()
// @include         *
// @run-at          document-start
// @grant           unsafeWindow
// @version 0.0.1.20171101122405
// @namespace https://greasyfork.org/users/11464
// ==/UserScript==

unsafeWindow.alert = function alert(message){console.log(message);};
window.alert = function alert(message){console.log(message);};
Window.prototype.alert = function alert(message){console.log(message);};