FL Masquerade
Manage multiple identities in "Fallen London" browser game.
Hvad er FL Masquerade?
FL Masquerade er en Chrome-udvidelse udviklet af lensvol, og dens hovedfunktion er "Manage multiple identities in "Fallen London" browser game.".
Udvidelsesskærmbilleder
Download FL Masquerade-udvidelses-CRX-fil
Download FL Masquerade-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | FL Masquerade |
ID | njkbfdpmpeoppdmgenflgjfnngnfkhbe |
Officiel URL | https://chromewebstore.google.com/detail/fl-masquerade/njkbfdpmpeoppdmgenflgjfnngnfkhbe |
Beskrivelse | Manage multiple identities in "Fallen London" browser game. |
Filstørrelse | 21.06 KB |
Antal Installationer | 145 |
Nuværende Version | 1.1.1 |
Senest Opdateret | 2022-06-04 |
Udgivelsesdato | 2022-05-24 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | lensvol |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/lensvol/fl-masquerade |
Hjælpeside-URL | https://github.com/lensvol/fl-masquerade |
Understøttede Sprog | 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" } } |