EDN Auto V3

Automate grading tasks on edunext system

EDN Auto V3란 무엇입니까?

EDN Auto V3은(는) Kunniii에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automate grading tasks on edunext system"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

EDN Auto V3 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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'"
    }
}