Kahoot AI

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

Τι είναι το Kahoot AI;

Το Kahoot AI είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Swiftzerr, και η κύρια λειτουργία του είναι "An extension that uses google to figure out the most likely answer for the kahoot question".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Kahoot AI

Λήψη αρχείων επέκτασης Kahoot AI σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Kahoot AI Kahoot AI
ID aaincicgdmboldkiddgckheekpfecdaf
Επίσημο URL https://chrome.google.com/webstore/detail/kahoot-ai/aaincicgdmboldkiddgckheekpfecdaf
Περιγραφή An extension that uses google to figure out the most likely answer for the kahoot question
Μέγεθος Αρχείου 275 KB
Αριθμός Εγκαταστάσεων 3,000
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2022-05-25
Ημερομηνία Δημοσίευσης 2022-04-17
Αξιολόγηση 3.23/5 Συνολικά 13 Αξιολογήσεις
Προγραμματιστής Swiftzerr
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Swiftzerr/kahoot-ai-extension/
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}