Kahoot AI

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

What is Kahoot AI?

Kahoot AI is a Chrome extension developed by Swiftzerr, and its main feature is "An extension that uses google to figure out the most likely answer for the kahoot question".

Extension Screenshots

screenshot
screenshot

Download Kahoot AI Extension CRX File

Download Kahoot AI extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Kahoot AI Kahoot AI
ID aaincicgdmboldkiddgckheekpfecdaf
Official URL https://chrome.google.com/webstore/detail/kahoot-ai/aaincicgdmboldkiddgckheekpfecdaf
Description An extension that uses google to figure out the most likely answer for the kahoot question
File Size 275 KB
Installation Count 3,000
Current Version 1.1.0
Last Updated 2022-05-25
Publish Date 2022-04-17
Rating 3.23/5 Total 13 Ratings
Developer Swiftzerr
Email [email protected]
Payment Type free
Extension Website https://github.com/Swiftzerr/kahoot-ai-extension/
Supported Languages 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"
            ]
        }
    ]
}