Pure_CSDN

净化CSDN

当前为 2023-03-07 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Pure_CSDN
  3. // @namespace https://blog.csdn.net/*
  4. // @match https://blog.csdn.net/*
  5. // @grant none
  6. // @version 0.3
  7. // @author 13号寄信人
  8. // @description 净化CSDN
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. 'use strict';
  14. let all = []
  15. //博文左边侧边栏
  16. let contentLeftAside = document.getElementsByClassName("blog_container_aside")
  17. all.push(contentLeftAside)
  18. //博文分类专栏
  19. let contentRightAside = document.getElementById("rightAside")
  20. all.push(contentRightAside)
  21. for (let i = 0; i < all.length; i++) {
  22. let self = all[i]
  23. self.parentElement.removeChild(self)
  24. }
  25. })();

QingJ © 2025

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