FL Small Mercies
Set of small 'fixes' for Fallen London UI.
什么是FL Small Mercies?
FL Small Mercies是由lensvol开发的Chrome扩展程序,该扩展的主要功能是“Set of small 'fixes' for Fallen London UI.”。
扩展截图
下载FL Small Mercies扩展crx文件
下载FL Small Mercies扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension introduces a set of small "fixers" for Fallen London UI intended to correct small deficiencies (as perceived by me, extension's author) in it. Any of the fixers can be enabled or disabled via a new "Extensions" section on the Account page.
扩展基本信息
名称 | FL Small Mercies |
ID | efcjeepmkepahpaodagjlioagpganblf |
官方URL | https://chromewebstore.google.com/detail/fl-small-mercies/efcjeepmkepahpaodagjlioagpganblf |
简介 | Set of small 'fixes' for Fallen London UI. |
文件大小 | 127 KB |
安装次数 | 333 |
当前版本 | 3.0.9 |
更新时间 | 2024-02-13 |
上架时间 | 2022-08-03 |
评分 | 5.00/5 共5次评分 |
开发者 | lensvol |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/lensvol/fl-small-mercies |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FL Small Mercies", "description": "Set of small 'fixes' for Fallen London UI.", "version": "3.0.9", "manifest_version": 3, "permissions": [ "storage", "tabs" ], "background": { "service_worker": "dist\/background-bundle.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/www.fallenlondon.com\/*" ], "css": [ "dist\/css\/extension.css" ], "js": [ "dist\/content-bundle.js" ], "run_at": "document_start" } ], "action": { "default_icon": { "16": "\/images\/fl-small-mercies-icon-16.png", "32": "\/images\/fl-small-mercies-icon-32.png", "48": "\/images\/fl-small-mercies-icon-48.png", "128": "\/images\/fl-small-mercies-icon-128.png" } }, "icons": { "16": "\/images\/fl-small-mercies-icon-16.png", "32": "\/images\/fl-small-mercies-icon-32.png", "48": "\/images\/fl-small-mercies-icon-48.png", "128": "\/images\/fl-small-mercies-icon-128.png" }, "web_accessible_resources": [ { "resources": [ "dist\/*", "src\/*" ], "matches": [ "https:\/\/www.fallenlondon.com\/*" ] } ] } |