try to take over the world!
当前为
// ==UserScript==
// @name remove alert from saraba1st
// @namespace http://tampermonkey.net/
// @version 0.2
// @description try to take over the world!
// @author You
// @match https://bbs.saraba1st.com/2b/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
window.alert = function(str){
return ;
}
})();