DTU CoursePlanner Accumulater

Automatically calculate ECTS points from the DTU course planner

DTU CoursePlanner Accumulater क्या है?

DTU CoursePlanner Accumulater https://codetalk.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically calculate ECTS points from the DTU course planner"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में DTU CoursePlanner Accumulater एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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\/*"
    ]
}