DTU CoursePlanner Accumulater

Automatically calculate ECTS points from the DTU course planner

DTU CoursePlanner Accumulater là gì?

DTU CoursePlanner Accumulater là một tiện ích mở rộng Chrome được phát triển bởi https://codetalk.io, và tính năng chính của nó là "Automatically calculate ECTS points from the DTU course planner".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng DTU CoursePlanner Accumulater

Tải xuống các tệp mở rộng DTU CoursePlanner Accumulater dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên DTU CoursePlanner Accumulater DTU CoursePlanner Accumulater
ID fiamknpomjmbblmkfillelnendemhfeh
URL Chính Thức https://chromewebstore.google.com/detail/dtu-courseplanner-accumul/fiamknpomjmbblmkfillelnendemhfeh
Mô tả Automatically calculate ECTS points from the DTU course planner
Kích Thước Tệp 1.03 MB
Số Lần Cài Đặt 103
Phiên Bản Hiện Tại 0.0.6
Cập Nhật Lần Cuối 2014-12-16
Ngày Phát Hành 2014-12-16
Nhà Phát Triển https://codetalk.io
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Tehnix/CoursePlanner
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}