Kahoot AI

An extension that uses google to figure out the most likely answer for the kahoot question

Cos'è Kahoot AI?

Kahoot AI è un'estensione di Chrome sviluppata da Swiftzerr, e la sua funzione principale è "An extension that uses google to figure out the most likely answer for the kahoot question".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Kahoot AI

Scarica i file di estensione Kahoot AI 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Kahoot AI Kahoot AI
ID aaincicgdmboldkiddgckheekpfecdaf
URL Ufficiale https://chrome.google.com/webstore/detail/kahoot-ai/aaincicgdmboldkiddgckheekpfecdaf
Descrizione An extension that uses google to figure out the most likely answer for the kahoot question
Dimensione del File 275 KB
Conteggio Installazioni 3,000
Versione Corrente 1.1.0
Ultimo Aggiornamento 2022-05-25
Data di Pubblicazione 2022-04-17
Valutazione 3.23/5 Totale 13 Valutazioni
Sviluppatore Swiftzerr
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Swiftzerr/kahoot-ai-extension/
Lingue Supportate 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"
            ]
        }
    ]
}