Keyboard Shortcuts for Kahoot
Adds keyboard shortcuts to Kahoot.
Was ist Keyboard Shortcuts for Kahoot?
Keyboard Shortcuts for Kahoot ist eine Chrome-Erweiterung, die von Lucas Kellar entwickelt wurde, und ihr Hauptmerkmal ist "Adds keyboard shortcuts to Kahoot.".
Erweiterungsscreenshots
Keyboard Shortcuts for Kahoot-Erweiterungs-CRX-Datei herunterladen
Laden Sie Keyboard Shortcuts for Kahoot-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ncphdofiffmnmnncogihodjcjcodpiac |
| Offizielle URL | https://chromewebstore.google.com/detail/keyboard-shortcuts-for-ka/ncphdofiffmnmnncogihodjcjcodpiac |
| Beschreibung | Adds keyboard shortcuts to Kahoot. |
| Dateigröße | 16.63 KB |
| Installationsanzahl | 3,691 |
| Aktuelle Version | 2021.2 |
| Letztes Update | 2021-05-18 |
| Veröffentlichungsdatum | 2021-03-31 |
| Bewertung | 4.00/5 Insgesamt 5 Bewertungen |
| Entwickler | Lucas Kellar |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://lkellar.org/kahoot |
| Hilfeseite URL | https://github.com/lkellar/kahoot/issues |
| Unterstützte Sprachen | 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"
}
} | |