Kahoot AI
An extension that uses google to figure out the most likely answer for the kahoot question
O que é Kahoot AI?
Kahoot AI é uma extensão do Chrome desenvolvida por Swiftzerr, e sua principal característica é "An extension that uses google to figure out the most likely answer for the kahoot question".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Kahoot AI
Baixe arquivos de extensão Kahoot AI 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
Report any bugs at https://github.com/Swiftzerr/kahoot-ai-extension/issues This is an extension that will get the current Kahoot question, google it, and then automatically figure out the answer. This extension can greatly help you with any kahoot. This extension is very new and may have a few bugs here and there.
Informações Básicas da Extensão
Nome | |
ID | aaincicgdmboldkiddgckheekpfecdaf |
URL Oficial | https://chrome.google.com/webstore/detail/kahoot-ai/aaincicgdmboldkiddgckheekpfecdaf |
Descrição | An extension that uses google to figure out the most likely answer for the kahoot question |
Tamanho do Arquivo | 275 KB |
Contagem de Instalações | 3,000 |
Versão Atual | 1.1.0 |
Última Atualização | 2022-05-25 |
Data de Publicação | 2022-04-17 |
Classificação | 3.23/5 Total de 13 Avaliações |
Desenvolvedor | Swiftzerr |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Swiftzerr/kahoot-ai-extension/ |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Kahoot AI", "version": "1.1.0", "description": "An extension that uses google to figure out the most likely answer for the kahoot question ", "icons": { "48": "assets\/icon-48.png", "96": "assets\/icon-96.png" }, "browser_specific_settings": { "gecko": { "id": "[email protected]" } }, "permissions": [ "storage" ], "host_permissions": [ "*:\/\/serpapi.com\/*" ], "action": { "default_icon": "assets\/icon-32.png", "default_title": "Kahoot AI", "default_popup": "popup\/popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/kahoot.it\/*", "*:\/\/www.kahoot.it\/*" ], "css": [ "libs\/toastr.min.css" ], "js": [ "libs\/jquery.min.js", "libs\/toastr.min.js", "content_scripts\/kahoot.js" ] } ] } |