DTU Course Qualification

Shows courses the current course is a prerequisite for

DTU Course Qualification란 무엇입니까?

DTU Course Qualification은(는) extrillo.productions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows courses the current course is a prerequisite for"입니다.

확장 프로그램 스크린샷

screenshot

DTU Course Qualification 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The extension logs and adds what the viewed course is a prerequisite for, both mandatory and recommended. Works on courses at DTU, on sites with url = "https://kurser.dtu.dk/course/*", where star is the course number of 5 digits.                    

확장 프로그램 기본 정보

이름 DTU Course Qualification DTU Course Qualification
ID flhjcmgcbgdpicmbhbjbaipidilddimb
공식 URL https://chromewebstore.google.com/detail/dtu-course-qualification/flhjcmgcbgdpicmbhbjbaipidilddimb
설명 Shows courses the current course is a prerequisite for
파일 크기 204 KB
설치 횟수 72
현재 버전 1.0
최근 업데이트 2023-08-29
출시 날짜 2023-08-28
개발자 extrillo.productions
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/Extrillo/dtu-course-qualification
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "DTU Course Qualification",
    "description": "Shows courses the current course is a prerequisite for",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/kurser.dtu.dk\/course\/*",
                "https:\/\/kurser.dtu.dk\/course\/*"
            ],
            "js": [
                "js\/jquery.js",
                "contentscript.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "128": "images\/icon_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "db\/data.js",
                "contentscript.js",
                "js\/jquery.js"
            ],
            "matches": [
                "http:\/\/kurser.dtu.dk\/*",
                "https:\/\/kurser.dtu.dk\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": "images\/icon_128.png"
    },
    "permissions": [
        "activeTab"
    ]
}