Fallen London Keybinds

Adds keybinds for playing the game using a keyboard.

Fallen London Keybinds क्या है?

Fallen London Keybinds Tetrikitty द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds keybinds for playing the game using a keyboard."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Fallen London Keybinds एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
        ]
    }
}