FL Masquerade

Manage multiple identities in "Fallen London" browser game.

Co to jest FL Masquerade?

FL Masquerade to rozszerzenie Chrome opracowane przez lensvol, a jego główną funkcją jest „Manage multiple identities in "Fallen London" browser game.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia FL Masquerade

Pobierz pliki rozszerzeń FL Masquerade w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension will let you switch between multiple different "alts" from inside the game itself, removing the need to constantly keep open a bevy of tabs/windows for them.                    

Podstawowe informacje o rozszerzeniu

Nazwa FL Masquerade FL Masquerade
ID njkbfdpmpeoppdmgenflgjfnngnfkhbe
Oficjalny URL https://chromewebstore.google.com/detail/fl-masquerade/njkbfdpmpeoppdmgenflgjfnngnfkhbe
Opis Manage multiple identities in "Fallen London" browser game.
Rozmiar pliku 21.06 KB
Liczba instalacji 145
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2022-06-04
Data Publikacji 2022-05-24
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper lensvol
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/lensvol/fl-masquerade
Adres URL Strony Pomocy https://github.com/lensvol/fl-masquerade
Obsługiwane Języki en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FL Masquerade",
    "description": "Manage multiple identities in \"Fallen London\" browser game.",
    "version": "1.1.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "storage",
        "alarms",
        "https:\/\/api.fallenlondon.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.fallenlondon.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inject.js"
            ],
            "matches": [
                "https:\/\/*.fallenlondon.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/masks-icon-16.png",
        "32": "\/images\/masks-icon-32.png",
        "48": "\/images\/masks-icon-48.png",
        "128": "\/images\/masks-icon-128.png"
    }
}