FL Small Mercies
Set of small 'fixes' for Fallen London UI.
Что такое FL Small Mercies?
FL Small Mercies - это расширение Chrome, разработанное lensvol, и его основная функция - "Set of small 'fixes' for Fallen London UI.".
Снимки экрана расширения
Скачать файл CRX расширения FL Small Mercies
Скачайте файлы расширений 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\/*" ] } ] } |