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ファイルをダウンロード
Keyboard Shortcuts for Kahoot拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" } } |