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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |