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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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\/*" ] } } |