DTU CoursePlanner Accumulater

Automatically calculate ECTS points from the DTU course planner

什麼是DTU CoursePlanner Accumulater?

DTU CoursePlanner Accumulater是由https://codetalk.io開發的Chrome擴展程式,該擴展的主要功能是“Automatically calculate ECTS points from the DTU course planner”。

擴展截圖

screenshot
screenshot

下載DTU CoursePlanner Accumulater擴展crx文件

下載DTU CoursePlanner Accumulater擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 DTU CoursePlanner Accumulater DTU CoursePlanner Accumulater
ID fiamknpomjmbblmkfillelnendemhfeh
官方網址 https://chromewebstore.google.com/detail/dtu-courseplanner-accumul/fiamknpomjmbblmkfillelnendemhfeh
簡介 Automatically calculate ECTS points from the DTU course planner
檔案大小 1.03 MB
安裝次數 103
目前版本 0.0.6
更新時間 2014-12-16
上架時間 2014-12-16
開發者 https://codetalk.io
付費類型 free
擴展官網 https://github.com/Tehnix/CoursePlanner
支援的語言 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\/*"
    ]
}