KTH Chronogram

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

KTH Chronogram क्या है?

KTH Chronogram Carl Törnqvist द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get an overview of your studies, see what's coming up and plan ahead."।

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

screenshot
screenshot

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

crx प्रारूप में KTH Chronogram एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}