# HG changeset patch # User nanaya # Date 1758952368 -32400 # Node ID bfd72865c24305c3d007d9d665730aee7180aa9f # Parent 385d07e4a81b2f5e08ae08e0750c20fd5338f32c Uh, kebab case filename? diff -r 385d07e4a81b -r bfd72865c243 cabbage-soft-image-rendering.user.js --- /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; }'); diff -r 385d07e4a81b -r bfd72865c243 cabbage_soft_image_rendering.user.js --- a/cabbage_soft_image_rendering.user.js Sat Sep 27 14:44:04 2025 +0900 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,15 +0,0 @@ -// ==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; }'); diff -r 385d07e4a81b -r bfd72865c243 discord-remove-top-bar.user.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/discord-remove-top-bar.user.js Sat Sep 27 14:52:48 2025 +0900 @@ -0,0 +1,26 @@ +// ==UserScript== +// @name Discord Remove Top Bar +// @namespace https://nanaya.net +// @match https://discord.com/* +// @grant GM_addStyle +// @version 1.0.1 +// @author nanaya +// @description Fix discord redundant bar on the top +// @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/discord-remove-top-bar.user.js +// ==/UserScript== + +'use strict'; + +/* global GM_addStyle */ +GM_addStyle(` + :root { + --custom-app-top-bar-height: 0px !important; + --custom-channel-header-height: 58px !important; + } + [class^="bar_"] { + opacity: 0 !important; + } + [data-list-id="guildsnav"] > [class^="itemsContainer_"] > div { + padding-top: 10px !important; + } +`); diff -r 385d07e4a81b -r bfd72865c243 discord_remove_top_bar.user.js --- a/discord_remove_top_bar.user.js Sat Sep 27 14:44:04 2025 +0900 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,26 +0,0 @@ -// ==UserScript== -// @name Discord Remove Top Bar -// @namespace https://nanaya.net -// @match https://discord.com/* -// @grant GM_addStyle -// @version 1.0.0 -// @author nanaya -// @description Fix discord redundant bar on the top -// @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/discord_remove_top_bar.user.js -// ==/UserScript== - -'use strict'; - -/* global GM_addStyle */ -GM_addStyle(` - :root { - --custom-app-top-bar-height: 0px !important; - --custom-channel-header-height: 58px !important; - } - [class^="bar_"] { - opacity: 0 !important; - } - [data-list-id="guildsnav"] > [class^="itemsContainer_"] > div { - padding-top: 10px !important; - } -`);