挺好的一个论坛为什么左边全是错误提示
// ==UserScript==
// @name 错误提示爬
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 出错你妈
// @author optimize_2
// @match https://oierbbs.fun/*
// @grant none
// ==/UserScript==
(function() {
var css = "";
css += [
"div.AlertManager {",
" display : none",
"}"
].join("\n");
if (typeof GM_addStyle != "undefined") {
GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
addStyle(css);
} else {
var node = document.createElement("style");
node.type = "text/css";
node.appendChild(document.createTextNode(css));
var heads = document.getElementsByTagName("head");
if (heads.length > 0) {
heads[0].appendChild(node);
} else {
document.documentElement.appendChild(node);
}
}
})();