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