Greasy Fork

Greasy Fork is available in English.

付流量费吧

屏蔽首次alert弹窗

当前为 2019-02-26 提交的版本,查看 最新版本

// ==UserScript==
// @name 付流量费吧
// @description 屏蔽首次alert弹窗
// @namespace caonimahuojiujian
// @match *://bbs.saraba1st.com/*
// @grant none
// @run-at document-start
// @version 1.0
// ==/UserScript==

const realAlert = alert;
window.alert = () => window.alert = realAlert;