DTU CoursePlanner Accumulater

Automatically calculate ECTS points from the DTU course planner

Qu'est-ce que DTU CoursePlanner Accumulater ?

DTU CoursePlanner Accumulater est une extension Chrome développée par https://codetalk.io, et sa fonction principale est "Automatically calculate ECTS points from the DTU course planner".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension DTU CoursePlanner Accumulater

Téléchargez les fichiers d'extension DTU CoursePlanner Accumulater au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Automatically calculate how many ECTS points you've passed, are taking currently, and have upcoming. It also puts your courses into the four categories that DTU requires you to have, namely technology core, nature sciences, electives and project based courses.

It's only tested with a Bsc, but should somewhat work with Msc also.

Want to join the development or have ideas? Check out the repo at https://github.com/Tehnix/CoursePlanner.                    

Informations de Base sur l'Extension

Nom DTU CoursePlanner Accumulater DTU CoursePlanner Accumulater
ID fiamknpomjmbblmkfillelnendemhfeh
URL Officiel https://chromewebstore.google.com/detail/dtu-courseplanner-accumul/fiamknpomjmbblmkfillelnendemhfeh
Description Automatically calculate ECTS points from the DTU course planner
Taille du Fichier 1.03 MB
Nombre d'Installations 103
Version Actuelle 0.0.6
Dernière Mise à Jour 2014-12-16
Date de Publication 2014-12-16
Développeur https://codetalk.io
Type de Paiement free
Site Web de l'Extension https://github.com/Tehnix/CoursePlanner
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.0.6",
    "name": "DTU CoursePlanner Accumulater",
    "short_name": "CoursePlanner",
    "description": "Automatically calculate ECTS points from the DTU course planner",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.kurser.dtu.dk\/_layouts\/Studyplanner\/*",
                "https:\/\/www.kurser.dtu.dk\/_layouts\/Studyplanner\/*",
                "http:\/\/kurser.dtu.dk\/_layouts\/Studyplanner\/*",
                "https:\/\/kurser.dtu.dk\/_layouts\/Studyplanner\/*"
            ],
            "js": [
                "jquery.min.js",
                "courses.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "jquery-2.0.3.min.map",
        "options.html"
    ],
    "permissions": [
        "storage",
        "http:\/\/www.kurser.dtu.dk\/*",
        "https:\/\/www.kurser.dtu.dk\/*",
        "http:\/\/kurser.dtu.dk\/*",
        "https:\/\/kurser.dtu.dk\/*"
    ]
}