Fallen London Keybinds

Adds keybinds for playing the game using a keyboard.

Qu'est-ce que Fallen London Keybinds ?

Fallen London Keybinds est une extension Chrome développée par Tetrikitty, et sa fonction principale est "Adds keybinds for playing the game using a keyboard.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Fallen London Keybinds

Téléchargez les fichiers d'extension Fallen London Keybinds au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Provides keybinds for drawing, playing and discarding cards, taking actions, and changing outfits.
By default: ` draws a new card, 1 to 5 plays the cards in your hand, Shift-1 to Shift-5 discard the cards in your hand, Q to T open storylets or take actions, A to H change outfits, and Z / X are used for Try Again and Onwards. The keybinds can be changed in the options.

v0.2.2: Fixed a typo in the default outfit settings - Hard-Wearing to Hard-wearing. Disabled all hotkeys on pages with a text input box.
v0.2.3: Now checks for text inputs and prevents hotkeys from triggering when entering text into them regardless of page. Thanks to LenSvol for sending me this fix.                    

Informations de Base sur l'Extension

Nom Fallen London Keybinds Fallen London Keybinds
ID pllehomkaepknkjficnkemogahbnebol
URL Officiel https://chromewebstore.google.com/detail/fallen-london-keybinds/pllehomkaepknkjficnkemogahbnebol
Description Adds keybinds for playing the game using a keyboard.
Taille du Fichier 7.09 KB
Nombre d'Installations 87
Version Actuelle 0.2.3
Dernière Mise à Jour 2023-07-20
Date de Publication 2021-09-16
Évaluation 4.00/5 Total 4 Évaluations
Développeur Tetrikitty
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fallen London Keybinds",
    "description": "Adds keybinds for playing the game using a keyboard.",
    "version": "0.2.3",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.fallenlondon.com\/*"
            ],
            "js": [
                "\/main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "\/options.html",
        "browser_style": true
    },
    "page_action": {
        "show_matches": [
            "*:\/\/*.fallenlondon.com\/*"
        ]
    }
}