Fallen London Keybinds
Adds keybinds for playing the game using a keyboard.
什麼是Fallen London Keybinds?
Fallen London Keybinds是由Tetrikitty開發的Chrome擴展程式,該擴展的主要功能是“Adds keybinds for playing the game using a keyboard.”。
擴展截圖
下載Fallen London Keybinds擴展crx文件
下載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.                     擴展基本資訊
| 名稱 |   |  
| ID | pllehomkaepknkjficnkemogahbnebol | 
| 官方網址 | 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\/*"
        ]
    }
}  |  |