Keyboard Shortcuts for Kahoot
Adds keyboard shortcuts to Kahoot.
O que é Keyboard Shortcuts for Kahoot?
Keyboard Shortcuts for Kahoot é uma extensão do Chrome desenvolvida por Lucas Kellar, e sua principal característica é "Adds keyboard shortcuts to Kahoot.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Keyboard Shortcuts for Kahoot
Baixe arquivos de extensão Keyboard Shortcuts for Kahoot no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Keyboard Shortcuts for Kahoot |
ID | ncphdofiffmnmnncogihodjcjcodpiac |
URL Oficial | https://chromewebstore.google.com/detail/keyboard-shortcuts-for-ka/ncphdofiffmnmnncogihodjcjcodpiac |
Descrição | Adds keyboard shortcuts to Kahoot. |
Tamanho do Arquivo | 16.63 KB |
Contagem de Instalações | 3,691 |
Versão Atual | 2021.2 |
Última Atualização | 2021-05-18 |
Data de Publicação | 2021-03-31 |
Classificação | 4.00/5 Total de 5 Avaliações |
Desenvolvedor | Lucas Kellar |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://lkellar.org/kahoot |
URL da Página de Ajuda | https://github.com/lkellar/kahoot/issues |
Idiomas Suportados | 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" } } |