view cabbage-soft-image-rendering.user.js @ 145:eca476484f36

More complete version
author nanaya <me@nanaya.net>
date Sat, 27 Sep 2025 14:53:17 +0900
parents bfd72865c243
children 15ec4ec958d7
line wrap: on
line source

// ==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; }');