Greasy Fork

Greasy Fork is available in English.

屏蔽MCBBS广告

屏蔽MCBBS右上角的广告

目前为 2020-04-13 提交的版本,查看 最新版本

// ==UserScript==
// @name         屏蔽MCBBS广告
// @namespace    http://tampermonkey.net/
// @version      1.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;}</style>');
})();