Pure_CSDN

净化CSDN

目前为 2023-03-07 提交的版本。查看 最新版本

// ==UserScript==
// @name        Pure_CSDN
// @namespace   https://blog.csdn.net/*
// @match       https://blog.csdn.net/*
// @grant       none
// @version     0.3
// @author      13号寄信人
// @description 净化CSDN
// @license     MIT
// ==/UserScript==

(function () {
    'use strict';
    let all = []
    //博文左边侧边栏
    let contentLeftAside = document.getElementsByClassName("blog_container_aside")
    all.push(contentLeftAside)
    //博文分类专栏
    let contentRightAside = document.getElementById("rightAside")
    all.push(contentRightAside)
    for (let i = 0; i < all.length; i++) {
        let self = all[i]
        self.parentElement.removeChild(self)
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址