csdn去广告,自动展开

csdn 去广告,自动展开

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         csdn去广告,自动展开
// @namespace    greasyfork.org
// @version      1.0
// @description  csdn 去广告,自动展开
// @author       codrWu
// @match        https://blog.csdn.net/*/article/details/*
// @grant        none
// @icon         https://blog.csdn.net/favicon.ico
// ==/UserScript==

(function() {
    'use strict';
    
    if(document.getElementsByClassName('pulllog-box')[0])
      document.getElementsByClassName('pulllog-box')[0].parentNode.removeChild(document.getElementsByClassName('pulllog-box')[0]);
    if(document.getElementById('kp_box_476'))
      document.getElementById('kp_box_476').parentNode.removeChild(document.getElementById('kp_box_476'));
    if(document.getElementById('adContent'))
      document.getElementById('adContent').parentNode.removeChild(document.getElementById('adContent'));
    document.getElementsByTagName("aside")[0].removeChild(document.getElementsByTagName("aside")[0].childNodes[3]);
    var asideFooter = document.getElementById("asideFooter");
    asideFooter.parentNode.removeChild(asideFooter);
    
    document.getElementById("dmp_ad_58").parentNode.removeChild(document.getElementById("dmp_ad_58"));
    var recommend_ad_box = document.getElementsByClassName('recommend-item-box recommend-ad-box');
    document.getElementsByClassName('recommend-box')[0].parentNode.removeChild(document.getElementsByClassName('recommend-box')[0]);
    if(document.getElementById("btn-readmore"))
      document.getElementById("btn-readmore").click();
    
})();