cnBeta anti-anti-Adblocker

移除 cnBeta 对 adBlockplus 及类似插件要求白名单的红色横幅

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        cnBeta anti-anti-Adblocker
// @version     0.1.0.1
// @icon        https://www.cnbeta.com/favicon.ico
// @description 移除 cnBeta 对 adBlockplus 及类似插件要求白名单的红色横幅
// @author      You!
// @grant       GM_addStyle
// @include     *://*.cnbeta.com/*
// @run-at      document-start
// @namespace   https://greasyfork.org/zh-CN/scripts/368747-cnbeta-anti-anti-adblocker
// ==/UserScript==

(function() {
	GM_addStyle(
		'[style*="z-index:99999"]{height:0!important;}'
	);
}());