您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
净化CSDN
当前为
// ==UserScript== // @name Pure_CSDN // @namespace https://blog.csdn.net/* // @match https://blog.csdn.net/* // @grant none // @version 0.4 // @author 13号寄信人 // @description 净化CSDN // @license MIT // ==/UserScript== (function () { 'use strict'; let all = [] //博文左边侧边栏 all.push(...document.getElementsByClassName("blog_container_aside")) //博文分类专栏 all.push(document.getElementById("rightAside")) //博文底部右侧操作栏 all.push(...document.getElementsByClassName("csdn-side-toolbar")) for (let i = 0; i < all.length; i++) { let self = all[i] self.parentElement.removeChild(self) } //博文内容居中 let contentMainBox = document.getElementById("mainBox") contentMainBox.style.display = "flex" contentMainBox.style.justifyContent = "center" })();