Pure_CSDN

净化CSDN

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

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

QingJ © 2025

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