Greasy Fork is available in English.

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.2
  7. // @author 13号寄信人
  8. // @description 净化CSDN
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. 'use strict';
  14. let all = []
  15. //博文左边侧边栏
  16. all.push(document.getElementsByClassName("blog_container_aside"))
  17. //博文分类专栏
  18. all.push(document.getElementById("rightAside"))
  19. for (let i = 0; i < all.length; i++) {
  20. let self = all[i]
  21. self.parentElement.removeChild(self)
  22. }
  23. })();