Greasy Fork is available in English.
移除cnBeta文章底部的反adblock红框
当前为
// ==UserScript==
// @name 移除cnBeta文章底部的红框
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 移除cnBeta文章底部的反adblock红框
// @author You
// @match https://*.cnbeta.com/*
// @require http://code.jquery.com/jquery-3.4.1.min.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
$("#abd-ad-iframe-wrapper").remove(),interval=setInterval(function(){a=$("a[href='//www.cnbeta.com/articles/3.htm']").parents().eq(2).remove(),0==a.length&&clearInterval(interval)},100);
})();