左侧这一列头像还是太扎眼了,能不能隐藏起来?

1 sslzjx Aug 14, 2024 block images/video |
2 gpt5 Aug 14, 2024 我是直接用广告拦截插件把头像的元素拦截了 |
4 jifengg Aug 14, 2024 右上角,设置,自定义 css , |
5 codyfeng Aug 14, 2024 刚刚手搓了一个 ``` // ==UserScript== // @name Hide avatars from v2ex.com // @namespace Violentmonkey Scripts // @match https://*.v2ex.com/* // @match https://v2ex.com/* // @grant none // @version 1.0 // @author - // @description 14/08/2024, 13:00:17 // ==/UserScript== (()=>{ 'use strict'; const css = `.avatar { display: none !important; }`; let customStyle = document.createElement('style'); customStyle.innerHTML = css; document.head.appendChild(customStyle); })() ``` |
8 totoro625 Aug 14, 2024 |
11 0o0O0o0O0o Aug 14, 2024 |
13 tyrone2333 Aug 14, 2024 |
15 9pr7im4IjQ9u0806 Aug 14, 2024 没了头像,岂不是少了很多乐趣哈哈哈哈哈哈 |
16 bzw875 Aug 14, 2024 我用自定义 css 的 Chrome 插件 [Stylebot] 下面样式全部隐藏,并且把空间空出来 .cell td:first-child { display: none; } img.avatar { display: none; } |