remove Anti-adblock for cnbeta

移除 cnBeta 顶部反AdBlock警告

当前为 2016-10-26 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name remove Anti-adblock for cnbeta
  3. // @namespace null
  4. // @version 0.12
  5. // @description 移除 cnBeta 顶部反AdBlock警告
  6. // @author Anonymous
  7. // @match *://www.cnbeta.com/*
  8. // @grant none
  9. // @require http://cdn.bootcss.com/jquery/3.1.1/jquery.min.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. $('a[href="http://www.cnbeta.com/articles/3.htm"]').parents(':eq(2)').remove();
  14. $('body').attr('style','');
  15. })();