1
sky96111 2021-05-05 17:59:49 +08:00 via Android
MD 界面挺好看的,但已经停更很久了。之前我也在用,现在换了 Stylus
|
3
XIU2 2021-05-05 19:10:56 +08:00
我懒省力都是直接写个油猴脚本来插入自定义网页样式。。。
缺点就是如果网页简单、加载速度快,就会看到一闪而过的样式变动。。。 |
5
kkocdko 2021-06-05 22:48:54 +08:00
@XIU2 你需要一些技巧,比如:
```javascript // ==UserScript== // @name User CSS Example // @match *://example.com/* // @run-at document-start // ==/UserScript== document.lastChild.appendChild(document.createElement("style")).textContent = ` body { background: #000; } `.replace(/;/g, "!important;"); ``` 原理就是尽快插入 CSS,正常情况下几乎没有闪烁,除非你在开发者工具里开 Throttling |