Greasy Fork镜像 支持简体中文。

极简版v2ex.com

去掉logo、头像、页脚、广告、侧栏等。

  1. // ==UserScript==
  2. // @name 极简版v2ex.com
  3. // @namespace v2ex.com
  4. // @version 0.5.1
  5. // @description 去掉logo、头像、页脚、广告、侧栏等。
  6. // @author abledf
  7. // @match https://www.v2ex.com/*
  8. // @grant GM_addStyle
  9. // @run-at document-start
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. GM_addStyle(`
  15. #Wrapper,
  16. #Logo {
  17. background-image: none !important;
  18. background-color: #fff !important;
  19. }
  20. #Main {
  21. width: 70%;
  22. margin: auto;
  23. }
  24. .topic_content, .reply_content, .item_title{
  25. font-size: 18px;
  26. }
  27.  
  28. a:link,
  29. a:visited,
  30. a:active {
  31. color: #000000;
  32. }
  33.  
  34. #ad_unit,
  35. #google-center-div,
  36. .avatar,
  37. #Bottom,
  38. .item tr>td:nth-child(1),
  39. #Rightbar {
  40. display: none !important;
  41. }
  42.  
  43. #Main tr > td:nth-child(1) {
  44. width: 0px;
  45. }
  46.  
  47.  
  48. `)
  49. })();

QingJ © 2025

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