![]() |
1
sslzjx 364 天前
block images/video
|
![]() |
2
gpt5 364 天前
我是直接用广告拦截插件把头像的元素拦截了
|
4
jifengg 364 天前
右上角,设置,自定义 css ,
|
![]() |
5
codyfeng 364 天前 ![]() 刚刚手搓了一个
``` // ==UserScript== // @name Hide avatars from ex.noerr.eu.org // @namespace Violentmonkey Scripts // @match https://*.ex.noerr.eu.org/* // @match https://ex.noerr.eu.org/* // @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 364 天前 ![]() |
![]() |
10
lambdaq 364 天前
https://ex.noerr.eu.org/settings 这里就可以自定义 css 吧
|
11
0o0O0o0O0o 364 天前
|
12
dreampet 364 天前
|
![]() |
13
tyrone2333 364 天前
|
![]() |
15
9pr7im4IjQ9u0806 364 天前
没了头像,岂不是少了很多乐趣哈哈哈哈哈哈
|
![]() |
16
bzw875 364 天前
我用自定义 css 的 Chrome 插件 [Stylebot]
下面样式全部隐藏,并且把空间空出来 .cell td:first-child { display: none; } img.avatar { display: none; } |