1
sslzjx 93 天前
block images/video
|
2
gpt5 93 天前
我是直接用广告拦截插件把头像的元素拦截了
|
4
jifengg 92 天前
右上角,设置,自定义 css ,
|
5
codyfeng 92 天前 4
刚刚手搓了一个
``` // ==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 92 天前 1
|
10
lambdaq 92 天前
https://www.v2ex.com/settings 这里就可以自定义 css 吧
|
11
0o0O0o0O0o 92 天前
|
13
tyrone2333 92 天前
|
15
kw8023cn 92 天前
没了头像,岂不是少了很多乐趣哈哈哈哈哈哈
|
16
bzw875 92 天前
我用自定义 css 的 Chrome 插件 [Stylebot]
下面样式全部隐藏,并且把空间空出来 .cell td:first-child { display: none; } img.avatar { display: none; } |