CSDN 净化

去除CSDN多余的广告侧边栏信息,阅读全文自动展开

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         CSDN 净化
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  去除CSDN多余的广告侧边栏信息,阅读全文自动展开
// @author       贺墨于
// @match        *://*.csdn.net/*
// @grant        none
// @license MIT 
// ==/UserScript==


var CSDNPluify = {
    gList: [],
    $(obj){
        var elem = document.querySelectorAll(obj)
        elem.css = function(propertyName, value){
            for(var i = 0, len = elem.length; i < len; i++){
                elem[i].style[propertyName] = value
            }
        }
        elem.cssText = function(value){
            for(var i = 0, len = elem.length; i < len; i++){
                elem[i].style.cssText = value
            }
        }
        elem.remove = function(){
            for(var i = 0, len = elem.length; i < len; i++){
                elem[i].remove()
            }
        }
        return elem
    },
    fitContent(){
        this.$('.hide-article-box').remove();
        this.$('#mainBox').css('width','100%');
        this.$('#mainBox main').cssText('width:100% !important');
        this.$('#article_content').css('height','auto');
        setTimeout(function(){
            this.$('.tool-box.vertical').css('right', '33px');
            this.$('div.csdn-side-toolbar').css('right', '33px');
        }, 1000);
    },
    execHidden(){
        for(var i = 0; i < this.gList.length; i++){
            this.hidden(this.gList[i]);
        }
    },
    push(content){
        this.gList.push(content);
    },
    log(msg){
        console.log(msg);
    },
    hidden(obj){
        if(typeof(obj)=== 'string'){
            obj = this.$(obj);
        }
        //obj.remove()
        obj.css('display', 'none')
    },
    init(){
        this.push('.aside-box');
        this.push('.recommend-box');
        this.push('.template-box');
        this.push('.recommend-right');
        this.execHidden();
        this.fitContent();
    }
}

CSDNPluify.init()