EDN Auto V3
Automate grading tasks on edunext system
什么是EDN Auto V3?
EDN Auto V3是由Kunniii开发的Chrome扩展程序,该扩展的主要功能是“Automate grading tasks on edunext system”。
扩展截图
下载EDN Auto V3扩展crx文件
下载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. 扩展基本信息
| 名称 | |
| 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'"
}
} | |