// ==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 // @downloadURL none // ==/UserScript== (function() { $('a[href="http://www.cnbeta.com/articles/3.htm"]').parents(':eq(2)').remove(); $('body').attr('style',''); })();