EDN Auto V3
Automate grading tasks on edunext system
O que é EDN Auto V3?
EDN Auto V3 é uma extensão do Chrome desenvolvida por Kunniii, e sua principal característica é "Automate grading tasks on edunext system".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão EDN Auto V3
Baixe arquivos de extensão EDN Auto V3 no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | EDN Auto V3 |
ID | jcoanhnlcggnjkefelkngdpongoaipdk |
URL Oficial | https://chromewebstore.google.com/detail/edn-auto-v3/jcoanhnlcggnjkefelkngdpongoaipdk |
Descrição | Automate grading tasks on edunext system |
Tamanho do Arquivo | 117 KB |
Contagem de Instalações | 228 |
Versão Atual | 3.1.2 |
Última Atualização | 2023-10-03 |
Data de Publicação | 2023-05-17 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | Kunniii |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/kunniii/edn_auto_ext |
URL da Página de Política de Privacidade | https://github.com/Kunniii/edn_auto_ext/blob/v2/Privacy-Policy.md |
Idiomas Suportados | 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'" } } |