屏蔽 CSDN 博客页的反反广告能力

别说谁变了你拦得住时间么 提交于 2020-03-17 22:28:06

某厂面试归来,发现自己落伍了!>>>

越来越背离开发者的 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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!