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"
            ]
        }
    ]
}