Keyboard Shortcuts for Kahoot
Adds keyboard shortcuts to Kahoot.
Keyboard Shortcuts for Kahoot란 무엇입니까?
Keyboard Shortcuts for Kahoot은(는) Lucas Kellar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds keyboard shortcuts to Kahoot."입니다.
확장 프로그램 스크린샷
Keyboard Shortcuts for Kahoot 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Add customizable keyboard shortcuts to Kahoot. No more clicking. Just set a key for each shape and type to answer Kahoot questions. The defaults are: Triangle/Red: O Diamond/Blue: P Circle/Yellow: S Square/Green: D Each shape can be changed at any time, even mid game! Source code available at https://github.com/lkellar/kahoot
확장 프로그램 기본 정보
이름 | Keyboard Shortcuts for Kahoot |
ID | ncphdofiffmnmnncogihodjcjcodpiac |
공식 URL | https://chromewebstore.google.com/detail/keyboard-shortcuts-for-ka/ncphdofiffmnmnncogihodjcjcodpiac |
설명 | Adds keyboard shortcuts to Kahoot. |
파일 크기 | 16.63 KB |
설치 횟수 | 3,691 |
현재 버전 | 2021.2 |
최근 업데이트 | 2021-05-18 |
출시 날짜 | 2021-03-31 |
평점 | 4.00/5 총 5 개의 평점 |
개발자 | Lucas Kellar |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://lkellar.org/kahoot |
도움말 페이지 URL | https://github.com/lkellar/kahoot/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Keyboard Shortcuts for Kahoot", "version": "2021.2", "description": "Adds keyboard shortcuts to Kahoot.", "background": { "scripts": [ "browser-polyfill.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/kahoot.it\/*" ], "js": [ "browser-polyfill.js", "kahoot.js" ] } ], "icons": { "48": "icon.png", "96": "[email protected]" }, "options_ui": { "page": "options\/options.html" }, "permissions": [ "storage" ], "browser_action": { "browser_style": true, "default_icon": { "48": "icon.png", "96": "[email protected]" }, "default_title": "Keyboard Shortcuts for Kahoot", "default_popup": "options\/options.html" } } |