remove Anti-adblock for cnbeta

移除 cnBeta 顶部反AdBlock警告

目前为 2016-10-19 提交的版本。查看 最新版本

// ==UserScript==
// @name  remove Anti-adblock for cnbeta
// @namespace null
// @version 0.11
// @description 移除 cnBeta 顶部反AdBlock警告
// @author Anonymous
// @match *://www.cnbeta.com/*
// @grant none
// ==/UserScript==

(function() {
     $('a[href="http://www.cnbeta.com/articles/3.htm"]').parents(':eq(2)').remove();
     $('body').attr('style','');
})();