Keyboard Shortcuts for Kahoot
Adds keyboard shortcuts to Kahoot.
Apa itu Keyboard Shortcuts for Kahoot?
Keyboard Shortcuts for Kahoot adalah ekstensi Chrome yang dikembangkan oleh Lucas Kellar, dan fitur utamanya adalah "Adds keyboard shortcuts to Kahoot.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Keyboard Shortcuts for Kahoot
Unduh file ekstensi Keyboard Shortcuts for Kahoot dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Keyboard Shortcuts for Kahoot |
ID | ncphdofiffmnmnncogihodjcjcodpiac |
URL Resmi | https://chromewebstore.google.com/detail/keyboard-shortcuts-for-ka/ncphdofiffmnmnncogihodjcjcodpiac |
Deskripsi | Adds keyboard shortcuts to Kahoot. |
Ukuran File | 16.63 KB |
Jumlah Instalasi | 3,691 |
Versi Saat Ini | 2021.2 |
Terakhir Diperbarui | 2021-05-18 |
Tanggal Publikasi | 2021-03-31 |
Penilaian | 4.00/5 Total 5 Penilaian |
Pengembang | Lucas Kellar |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://lkellar.org/kahoot |
URL Halaman Bantuan | https://github.com/lkellar/kahoot/issues |
Bahasa yang Didukung | 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" } } |