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.
拡張機能の基本情報
名前 | 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 |
Eメール | [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'" } } |