DTU CoursePlanner Accumulater

Automatically calculate ECTS points from the DTU course planner

¿Qué es DTU CoursePlanner Accumulater?

DTU CoursePlanner Accumulater es una extensión de Chrome desarrollada por https://codetalk.io, y su función principal es "Automatically calculate ECTS points from the DTU course planner".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión DTU CoursePlanner Accumulater

Descarga archivos de extensión DTU CoursePlanner Accumulater en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre DTU CoursePlanner Accumulater DTU CoursePlanner Accumulater
ID fiamknpomjmbblmkfillelnendemhfeh
URL Oficial https://chromewebstore.google.com/detail/dtu-courseplanner-accumul/fiamknpomjmbblmkfillelnendemhfeh
Descripción Automatically calculate ECTS points from the DTU course planner
Tamaño del Archivo 1.03 MB
Cantidad de Instalaciones 103
Versión Actual 0.0.6
Última Actualización 2014-12-16
Fecha de Publicación 2014-12-16
Desarrollador https://codetalk.io
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Tehnix/CoursePlanner
Idiomas Soportados 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\/*"
    ]
}