🏠 Home 

付流量费吧

屏蔽首次alert弹窗


Install this script?
  1. // ==UserScript==
  2. // @name 付流量费吧
  3. // @description 屏蔽首次alert弹窗
  4. // @namespace caonimahuojiujian
  5. // @match *://bbs.saraba1st.com/*
  6. // @grant none
  7. // @run-at document-start
  8. // @version 1.0
  9. // ==/UserScript==
  10. const realAlert = alert;
  11. window.alert = () => window.alert = realAlert;