越来越背离开发者的 CSDN 竟然对反广告下手了。检测到广告被过滤竟然弹框不给看博文,还强制跳转到登录页。恶心。
直入正题,给浏览器装好油猴(这里我用的是 Tampermonkey for Edge),编写自定义插件,写入以下几行,保存启用:
// ==UserScript==
// @name anti-csdn-ad-checker
// @namespace http://tampermonkey.net/
// @version 0.1
// @description csdn sucks!
// @author xp
// @match https://blog.csdn.net/*/article/details/*
// @grant none
// @requires https://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==
(function() {
'use strict';
// 关闭反广告
$('.adblock').detach();
$('.check-adblock-bg').detach();
var highestIntervalId = setInterval(function () {});
for (var i = 0 ; i < highestIntervalId ; i++) {
clearInterval(i);
}
// 全文可见
$('#article_content').css({
height: "auto",
});
$('.hide-article-box').detach();
})();
还有一个简单的办法,只能用来屏蔽反广告,就是在 ADP 等加一条规则:
https://g.csdnimg.cn/check-adblock/*/check-adblock.js*
如果你把 g.csdnimg.cn
域名整体屏蔽掉其实也没什么问题。
V2EX 上这个问题也吵起来了,传送门:https://www.v2ex.com/t/514577 https://www.v2ex.com/t/514599
来源:oschina
链接:https://my.oschina.net/u/2313378/blog/2979865