屏蔽首次alert弹窗
- // ==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;