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”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | aaincicgdmboldkiddgckheekpfecdaf |
官方網址 | 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" ] } ] } |