V2EX精简版

去头像、页脚、广告、侧栏等

  1. // ==UserScript==
  2. // @name V2EX精简版
  3. // @namespace v2ex.com
  4. // @version 0.0.1
  5. // @description 去头像、页脚、广告、侧栏等
  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.  
  17. /* #Logo {
  18. background-image: none !important;
  19. background-color: #fff !important;
  20. } */
  21. #Main {
  22. width: 100%;
  23. margin: auto;
  24. }
  25. .topic_content, .reply_content, .item_title{
  26. font-size: 18px;
  27. }
  28. /* #Top {
  29. background-color: #333344;
  30. }*/
  31.  
  32. a:link,
  33. a:visited,
  34. a:active {
  35. color: #000000;
  36. }
  37.  
  38. #ad_unit,
  39. #google-center-div,
  40. .avatar,
  41. #Bottom,
  42. .item tr>td:nth-child(1),
  43. #Rightbar {
  44. display: none !important;
  45. }
  46.  
  47. #Main tr > td:nth-child(1) {
  48. width: 0px;
  49. }
  50.  
  51.  
  52. `)
  53. })();

QingJ © 2025

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