CSDN优化

去广告,净化剪切板,自动展开全文,免登录

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         CSDN优化
// @namespace    http://happyers.top
// @version      0.1
// @description  去广告,净化剪切板,自动展开全文,免登录
// @author       HAPPY
// @match        https://blog.csdn.net/*
// @match        http://blog.csdn.net/*
// @grant        none
// @icon         https://csdnimg.cn/public/favicon.ico
// ==/UserScript==


var sideInterval = 500; //设置多少时间(ms)后去除广告


function expand(){
    var ok = false;
    var e = $('.hide-article-box');
    if(e.length > 0){
        ok = true;
        e.remove();
        $('#article_content').removeAttr('style');
    }
    if (document.getElementsByClassName("comment-list-box")[0]){
        document.getElementsByClassName("comment-list-box")[0].removeAttribute("style");
    } //自动展开评论
}

function remove_ad(){
    var element = document.querySelector("#asideFooter > div:nth-child(1)");
    element.parentNode.removeChild(element);

    setTimeout(function () {
        var hot = document.getElementsByClassName("type_hot_word");
        var recommend = document.getElementsByClassName("recommend-ad-box");
        for (var i = (hot.length - 1); i >= 0; i--) {
            hot[i].remove();
        }
        for (var j = (recommend.length - 1); j >= 0; j--) {
            recommend[j].remove();
        }
        if (document.getElementsByClassName("fourth_column")[0]) {
            document.getElementsByClassName("fourth_column")[0].remove();
        }
    }, sideInterval);//去除底部推荐中的广告
}

(function() {
    remove_ad();//去广告
    csdn.copyright.init("", "", ""); //去除剪贴板劫持
    localStorage.setItem("anonymousUserLimit", ""); // 免登陆
    expand();// 自动展开全文
})();