Greasy Fork is available in English.

CSDN beautification

CSDN 界面美化

  1. // ==UserScript==
  2. // @name CSDN beautification
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description CSDN 界面美化
  6. // @author lihaji
  7. // @match https://blog.csdn.net/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=csdn.net
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function () {
  14. 'use strict';
  15.  
  16.  
  17. // 设置元素居中排列
  18. // 获取 #mainBox 元素
  19. const mainBoxElement = document.getElementById("mainBox");
  20. // 设置元素样式为 flex 布局
  21. mainBoxElement.style.display = "flex";
  22. // 设置子元素居中排列
  23. mainBoxElement.style.justifyContent = "center";
  24. mainBoxElement.style.marginRight = "0";
  25.  
  26. // 获取带有类名 "nodata" 的 body 元素
  27. var body = document.querySelector("body.nodata");
  28.  
  29. // 修改背景颜色为白色
  30. body.style.backgroundColor = "#000000";
  31.  
  32.  
  33.  
  34.  
  35. document.querySelector("#mainBox > aside").remove();
  36. document.querySelector("#toolbarBox").remove();
  37. document.querySelector(".csdn-side-toolbar").remove();
  38. document.querySelector("#rightAside").remove();
  39. })();