KTH Chronogram

Get an overview of your studies, see what's coming up and plan ahead.

KTH Chronogram란 무엇입니까?

KTH Chronogram은(는) Carl Törnqvist에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get an overview of your studies, see what's coming up and plan ahead."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

KTH Chronogram 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        KTH Chronogram adds a new page to the kth.se website with the purpose to give you an overview of your agenda, show you what is coming up and help you plan your work ahead.

Your schedule, notifications, assignments and deadlines are listed with the most urgent items up top. By sorting by importance as opposed to chronologically you'll be made aware of what you should be focusing on right now. Tasks will show up not when they are due, but when you should deal with them.

You can easily add your own tasks, give them a due date and a priority and rest assured that they will show up in good time before they are due.

This is the product of a research project in the course Interaction Design Methods at KTH Royal Institute of Technology. Designed by Jonathan Adam, Adrian Latupeirissa, Nikolaos Syropoulos and Carl Törnqvist                    

확장 프로그램 기본 정보

이름 KTH Chronogram KTH Chronogram
ID nplecchkpdecpkocogibcbpcnlgohlpa
공식 URL https://chromewebstore.google.com/detail/kth-chronogram/nplecchkpdecpkocogibcbpcnlgohlpa
설명 Get an overview of your studies, see what's coming up and plan ahead.
파일 크기 74.88 KB
설치 횟수 15
현재 버전 1.2.2
최근 업데이트 2017-03-16
출시 날짜 2017-03-16
평점 5.00/5 총 1 개의 평점
개발자 Carl Törnqvist
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "KTH Chronogram",
    "description": "Get an overview of your studies, see what's coming up and plan ahead.",
    "version": "1.2.2",
    "icons": {
        "16": "assets\/16.png",
        "48": "assets\/48.png",
        "128": "assets\/128.png",
        "256": "assets\/256.png"
    },
    "browser_action": {
        "default_icon": "assets\/16.png",
        "default_title": "Go to KTH Chronogram"
    },
    "permissions": [
        "activeTab",
        "https:\/\/www.kth.se\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.kth.se\/social\/home\/subscriptions\/",
                "https:\/\/www.kth.se\/social\/home\/subscriptions\/?*"
            ],
            "css": [
                "index.css"
            ],
            "js": [
                "index.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            "analytics.js"
        ]
    },
    "web_accessible_resources": [
        "assets\/*.png"
    ]
}