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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة سياسة الخصوصية | 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'" } } |