DTU Course Qualification

Shows courses the current course is a prerequisite for

What is DTU Course Qualification?

DTU Course Qualification is a Chrome extension developed by extrillo.productions, and its main feature is "Shows courses the current course is a prerequisite for".

Extension Screenshots

screenshot

Download DTU Course Qualification Extension CRX File

Download DTU Course Qualification extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name DTU Course Qualification DTU Course Qualification
ID flhjcmgcbgdpicmbhbjbaipidilddimb
Official URL https://chromewebstore.google.com/detail/dtu-course-qualification/flhjcmgcbgdpicmbhbjbaipidilddimb
Description Shows courses the current course is a prerequisite for
File Size 204 KB
Installation Count 72
Current Version 1.0
Last Updated 2023-08-29
Publish Date 2023-08-28
Developer extrillo.productions
Email [email protected]
Payment Type free
Help Page URL https://github.com/Extrillo/dtu-course-qualification
Supported Languages 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"
    ]
}