remove Anti-adblock for cnbeta

移除 cnBeta 顶部反AdBlock警告

目前為 2016-10-26 提交的版本,檢視 最新版本

// ==UserScript==
// @name  remove Anti-adblock for cnbeta
// @namespace null
// @version 0.12
// @description 移除 cnBeta 顶部反AdBlock警告
// @author Anonymous
// @match *://www.cnbeta.com/*
// @grant none
// @require http://cdn.bootcss.com/jquery/3.1.1/jquery.min.js
// ==/UserScript==

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