FL Small Mercies
Set of small 'fixes' for Fallen London UI.
Cos'è FL Small Mercies?
FL Small Mercies è un'estensione di Chrome sviluppata da lensvol, e la sua funzione principale è "Set of small 'fixes' for Fallen London UI.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione FL Small Mercies
Scarica i file di estensione FL Small Mercies in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | FL Small Mercies |
ID | efcjeepmkepahpaodagjlioagpganblf |
URL Ufficiale | https://chromewebstore.google.com/detail/fl-small-mercies/efcjeepmkepahpaodagjlioagpganblf |
Descrizione | Set of small 'fixes' for Fallen London UI. |
Dimensione del File | 127 KB |
Conteggio Installazioni | 333 |
Versione Corrente | 3.0.9 |
Ultimo Aggiornamento | 2024-02-13 |
Data di Pubblicazione | 2022-08-03 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | lensvol |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/lensvol/fl-small-mercies |
Lingue Supportate | 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\/*" ] } ] } |