Mercurial > ec-userscripts
diff cabbage-soft-image-rendering.user.js @ 144:bfd72865c243
Uh, kebab case filename?
author | nanaya <me@nanaya.net> |
---|---|
date | Sat, 27 Sep 2025 14:52:48 +0900 |
parents | cabbage_soft_image_rendering.user.js@b4bb74b34ae9 |
children | 15ec4ec958d7 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cabbage-soft-image-rendering.user.js Sat Sep 27 14:52:48 2025 +0900 @@ -0,0 +1,15 @@ +// ==UserScript== +// @name Cabbage Soft Image Rendering +// @namespace https://nanaya.net +// @match https://cabbage-soft.com/* +// @grant GM_addStyle +// @version 1.0.0 +// @author nanaya +// @description Fix image rendering (mainly Firefox) +// @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/cabbage-soft-image-rendering.user.js +// ==/UserScript== + +'use strict'; + +/* global GM_addStyle */ +GM_addStyle('img { image-rendering: initial !important; }');