遮蔽 CSDN 部落格頁的反反廣告能力
阿新 • • 發佈:2018-12-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(); })();