Csdn Ads Cleaner

Clear those fxxking ads on csdn!

Tính đến 13-01-2019. Xem phiên bản mới nhất.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

Bạn sẽ cần cài đặt một tiện ích mở rộng như Tampermonkey hoặc Violentmonkey để cài đặt kịch bản này.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Csdn Ads Cleaner
// @namespace    http://tampermonkey.net/
// @version      1.0.5
// @description  Clear those fxxking ads on csdn!
// @author       sun123zxy
// @match        blog.csdn.net/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    
    var CAB = document.createElement("button");
    CAB.innerHTML="Clear Ads";
    CAB.onclick=function(){
        console.log("Finding ads...");
        var Ads = new Array(document.getElementsByClassName("csdn-tracking-statistics mb8 box-shadow")[0],
                            document.getElementsByClassName("fourth_column")[0],
                            document.getElementsByClassName("right-item _paradigm_S8_csdn_ads_render")[0],
                            document.getElementById("kp_box_57"),
                            document.getElementsByClassName("right-item _paradigm_S27_csdn_ads_render")[0],
                            document.getElementsByClassName("pulllog-box")[0],
                            document.getElementById("adContent")
                           );
        console.log("Clearing ads...");
        for(var i=0;i<Ads.length;i++){
            if(Ads[i]){
                Ads[i].parentNode.removeChild(Ads[i]);
                console.log("Sucessfully Clear Ads "+i+"!");
            }else{
                console.log("Cannot find Ads "+i+"!");
            }
        }
    }
    var body= document.body;
    body.insertBefore(CAB,document.getElementsByClassName("container clearfix")[0]);
    console.log("Sucessfully spawn Clear Button...");
})();