Keyboard Shortcuts for Kahoot
Adds keyboard shortcuts to Kahoot.
Cos'è Keyboard Shortcuts for Kahoot?
Keyboard Shortcuts for Kahoot è un'estensione di Chrome sviluppata da Lucas Kellar, e la sua funzione principale è "Adds keyboard shortcuts to Kahoot.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Keyboard Shortcuts for Kahoot
Scarica i file di estensione Keyboard Shortcuts for Kahoot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Keyboard Shortcuts for Kahoot |
ID | ncphdofiffmnmnncogihodjcjcodpiac |
URL Ufficiale | https://chromewebstore.google.com/detail/keyboard-shortcuts-for-ka/ncphdofiffmnmnncogihodjcjcodpiac |
Descrizione | Adds keyboard shortcuts to Kahoot. |
Dimensione del File | 16.63 KB |
Conteggio Installazioni | 3,691 |
Versione Corrente | 2021.2 |
Ultimo Aggiornamento | 2021-05-18 |
Data di Pubblicazione | 2021-03-31 |
Valutazione | 4.00/5 Totale 5 Valutazioni |
Sviluppatore | Lucas Kellar |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://lkellar.org/kahoot |
URL della Pagina di Aiuto | https://github.com/lkellar/kahoot/issues |
Lingue Supportate | 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" } } |