Fallen London Keybinds

Adds keybinds for playing the game using a keyboard.

Τι είναι το Fallen London Keybinds;

Το Fallen London Keybinds είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tetrikitty, και η κύρια λειτουργία του είναι "Adds keybinds for playing the game using a keyboard.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Fallen London Keybinds

Λήψη αρχείων επέκτασης Fallen London Keybinds σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Fallen London Keybinds Fallen London Keybinds
ID pllehomkaepknkjficnkemogahbnebol
Επίσημο URL https://chromewebstore.google.com/detail/fallen-london-keybinds/pllehomkaepknkjficnkemogahbnebol
Περιγραφή Adds keybinds for playing the game using a keyboard.
Μέγεθος Αρχείου 7.09 KB
Αριθμός Εγκαταστάσεων 87
Τρέχουσα Έκδοση 0.2.3
Τελευταία Ενημέρωση 2023-07-20
Ημερομηνία Δημοσίευσης 2021-09-16
Αξιολόγηση 4.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Tetrikitty
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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\/*"
        ]
    }
}