Greasy Fork

Greasy Fork is available in English.

屏蔽MCBBS广告

屏蔽MCBBS右上角、服务器版块的广告

目前为 2020-05-18 提交的版本,查看 最新版本

// ==UserScript==
// @name         屏蔽MCBBS广告
// @namespace    http://tampermonkey.net/
// @version      2.0
// @description  屏蔽MCBBS右上角、服务器版块的广告
// @author       You
// @match        https://*.mcbbs.net/*
// @grant        none
// ==/UserScript==

(function() {
    // 有bug就反馈一下,理论上没有bug
    jq("head").append('<style id="bma_css">div.hdc>div.y:last-child {display: none;} div#forum_rules_179>div.ptn.xg2>div:last-child {display: none;}</style>');


    if(jq('#forum_rules_179').length>0) {
        jq('#forum_rules_179').after('<center><a href="https://www.mcbbs.net/thread-803451-1-1.html" target="_blank"><img id="aimg_y449t" class="zoom" width="340" height="120" src="https://attachment.mcbbs.net/forum/201905/01/005617b5xm5r65aizriqra.png" border="0" alt=""></a></center>已帮您屏蔽广告内容');
    }

})();