EDN Auto V3
Automate grading tasks on edunext system
EDN Auto V3คืออะไร?
EDN Auto V3 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kunniii และคุณลักษณะหลักของมันคือ "Automate grading tasks on edunext system"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย EDN Auto V3
ดาวน์โหลดไฟล์ส่วนขยาย EDN Auto V3 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Edunext's Auto Grading Tool: Efficiency and Accuracy Combined Streamline grading with Edunext's auto grading tool. Say goodbye to manual grading and enjoy efficient automation. Developed by education technology experts, this user-friendly tool saves time and ensures accuracy. Upgrade your grading experience today with Edunext.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | EDN Auto V3 |
ID | jcoanhnlcggnjkefelkngdpongoaipdk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/edn-auto-v3/jcoanhnlcggnjkefelkngdpongoaipdk |
คำอธิบาย | Automate grading tasks on edunext system |
ขนาดไฟล์ | 117 KB |
จำนวนการติดตั้ง | 228 |
เวอร์ชันปัจจุบัน | 3.1.2 |
อัปเดตครั้งล่าสุด | 2023-10-03 |
วันที่เผยแพร่ | 2023-05-17 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Kunniii |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/kunniii/edn_auto_ext |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/Kunniii/edn_auto_ext/blob/v2/Privacy-Policy.md |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "EDN Auto V3", "description": "Automate grading tasks on edunext system ", "version": "3.1.2", "manifest_version": 3, "icons": { "128": "icon.png" }, "homepage_url": "https:\/\/github.com\/Kunniii\/edn_auto_ext", "background": { "service_worker": "Background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/fu-edunext.fpt.edu.vn\/*" ], "js": [ "ContentScript.js" ], "run_at": "document_end" } ], "action": { "default_icon": { "128": "icon.png" }, "default_popup": "index.html", "default_title": "Edunext Auto" }, "permissions": [ "activeTab", "scripting" ], "host_permissions": [ "https:\/\/fu-edunext.fpt.edu.vn\/*" ], "commands": { "_execute_action": { "suggested_key": { "default": "Alt+Q", "mac": "Alt+Q" } } }, "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "https:\/\/fu-edunext.fpt.edu.vn\/*" ], "use_dynamic_url": true } ], "content_security_policy": { "extension_pages": "script-src 'self' ; object-src 'self'", "sandbox": "sandbox allow-scripts; script-src 'self' 'https:\/\/apis.google.com\/' 'https:\/\/www.gstatic.com\/' 'https:\/\/*.firebaseio.com' 'https:\/\/www.googleapis.com' 'https:\/\/ajax.googleapis.com'; object-src 'self'" } } |