优化掘金的样式

优化掘金的样式,去除了一些ai的广告

目前为 2024-07-21 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name 优化掘金的样式
  3. // @namespace http://tampermonkey.net/
  4. // @license MIT
  5. // @version 0.1.0
  6. // @description 优化掘金的样式,去除了一些ai的广告
  7. // @icon https://lf3-cdn-tos.bytescm.com/obj/static/xitu_juejin_web//static/favicons/favicon-32x32.png
  8. // @author leftover
  9. // @run-at document-start
  10. // @match https://juejin.cn/*
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. const style = document.createElement("style");
  15. style.id = "leftover";
  16. style.innerHTML = `
  17. .context-menu {
  18. display: none !important;
  19. }
  20. .adverts-list {
  21. display: none !important;
  22. }
  23. .sidebar-block.wechat-sidebar-block.pure.wechat-ad {
  24. display: none !important;
  25. }
  26. .btn.btn-ai {
  27. display: none !important;
  28. }
  29. .more-btn {
  30. display: none !important;
  31. }
  32. `
  33. document.head.appendChild(style);
  34. })();

QingJ © 2025

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