Mercurial > ec-userscripts
comparison cabbage-soft-image-rendering.user.js @ 139:9a32063353d4
Add cabbage soft rendering thing
author | nanaya <me@nanaya.net> |
---|---|
date | Tue, 21 Jan 2025 21:22:52 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
138:76e8b47bbb03 | 139:9a32063353d4 |
---|---|
1 // ==UserScript== | |
2 // @name Cabbage Soft Image Rendering | |
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; }'); |