Kahoot AI

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

Kahoot AIとは何ですか?

Kahoot AIはSwiftzerrによって開発されたChromeの拡張機能で、その主な機能は「An extension that uses google to figure out the most likely answer for the kahoot question」です。

拡張機能のスクリーンショット

screenshot
screenshot

Kahoot AI拡張機能のCRXファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}