Mercurial > ec-userscripts
annotate cabbage-soft-image-rendering.user.js @ 147:15ec4ec958d7 default tip
Sentence case name and match filename (sort of)
author | nanaya <me@nanaya.net> |
---|---|
date | Sat, 27 Sep 2025 15:06:06 +0900 |
parents | bfd72865c243 |
children |
rev | line source |
---|---|
139 | 1 // ==UserScript== |
147
15ec4ec958d7
Sentence case name and match filename (sort of)
nanaya <me@nanaya.net>
parents:
144
diff
changeset
|
2 // @name Cabbage soft image rendering |
139 | 3 // @namespace https://nanaya.net |
4 // @match https://cabbage-soft.com/* | |
5 // @grant GM_addStyle | |
6 // @version 1.0.0 | |
7 // @author nanaya | |
8 // @description Fix image rendering (mainly Firefox) | |
9 // @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/cabbage-soft-image-rendering.user.js | |
10 // ==/UserScript== | |
11 | |
12 'use strict'; | |
13 | |
14 /* global GM_addStyle */ | |
15 GM_addStyle('img { image-rendering: initial !important; }'); |