EDN Auto V3
Automate grading tasks on edunext system
EDN Auto V3 क्या है?
EDN Auto V3 Kunniii द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automate grading tasks on edunext system"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में EDN Auto V3 एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
गोपनीयता नीति पृष्ठ 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'" } } |