Kahoot AI
An extension that uses google to figure out the most likely answer for the kahoot question
Kahoot AI là gì?
Kahoot AI là một tiện ích mở rộng Chrome được phát triển bởi Swiftzerr, và tính năng chính của nó là "An extension that uses google to figure out the most likely answer for the kahoot question".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Kahoot AI
Tải xuống các tệp mở rộng Kahoot AI dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | aaincicgdmboldkiddgckheekpfecdaf |
URL Chính Thức | https://chrome.google.com/webstore/detail/kahoot-ai/aaincicgdmboldkiddgckheekpfecdaf |
Mô tả | An extension that uses google to figure out the most likely answer for the kahoot question |
Kích Thước Tệp | 275 KB |
Số Lần Cài Đặt | 3,000 |
Phiên Bản Hiện Tại | 1.1.0 |
Cập Nhật Lần Cuối | 2022-05-25 |
Ngày Phát Hành | 2022-04-17 |
Đánh Giá | 3.23/5 Tổng số 13 Đánh Giá |
Nhà Phát Triển | Swiftzerr |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Swiftzerr/kahoot-ai-extension/ |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |