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"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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" ] } ] } |