![]() | 1 sslzjx 2024-08-14 11:48:04 +08:00 block images/video |
![]() | 2 gpt5 2024-08-14 11:52:54 +08:00 我是直接用广告拦截插件把头像的元素拦截了 |
4 jifengg 2024-08-14 12:59:47 +08:00 右上角,设置,自定义 css , |
![]() | 5 codyfeng 2024-08-14 13:03:14 +08:00 ![]() 刚刚手搓了一个 ``` // ==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 2024-08-14 13:15:39 +08:00 ![]() |
11 0o0O0o0O0o 2024-08-14 13:38:56 +08:00 |
![]() | 13 tyrone2333 2024-08-14 13:53:47 +08:00 |
![]() | 15 9pr7im4IjQ9u0806 2024-08-14 15:56:25 +08:00 没了头像,岂不是少了很多乐趣哈哈哈哈哈哈 |
![]() | 16 bzw875 2024-08-14 16:16:20 +08:00 我用自定义 css 的 Chrome 插件 [Stylebot] 下面样式全部隐藏,并且把空间空出来 .cell td:first-child { display: none; } img.avatar { display: none; } |