FL Small Mercies

Set of small 'fixes' for Fallen London UI.

Vad är FL Small Mercies?

FL Small Mercies är en Chrome-tillägg utvecklad av lensvol, och dess huvudfunktion är "Set of small 'fixes' for Fallen London UI.".

Tilläggsskärmbilder

screenshot

Ladda ner FL Small Mercies-förlängningens CRX-fil

Ladda ner FL Small Mercies-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn FL Small Mercies FL Small Mercies
ID efcjeepmkepahpaodagjlioagpganblf
Officiell webbadress https://chromewebstore.google.com/detail/fl-small-mercies/efcjeepmkepahpaodagjlioagpganblf
Beskrivning Set of small 'fixes' for Fallen London UI.
Filstorlek 127 KB
Antal Installationer 333
Aktuell Version 3.0.9
Senast Uppdaterad 2024-02-13
Publiceringsdatum 2022-08-03
Betyg 5.00/5 Totalt 5 Betyg
Utvecklare lensvol
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/lensvol/fl-small-mercies
Stödda Språk 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\/*"
            ]
        }
    ]
}