DraftToCalendar

Taking classes from DraftMySchedule and adding them to a user's Google calendar

DraftToCalendar क्या है?

DraftToCalendar David George द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Taking classes from DraftMySchedule and adding them to a user's Google calendar"।

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

screenshot

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

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

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

                        DraftToCalendar is a google chrome extension which will take a Western University DraftMySchedule course timetable and will add it to a user's google calendar. This is much easier then having to manually create a google calendar for the entire year manually. All it takes is one button click and your entire schedule will be automatically added. Simple as that.                    

एक्सटेंशन की मूल जानकारी

नाम DraftToCalendar DraftToCalendar
ID khkodfcgkhljepkpapocoaojdnkbbfhc
आधिकारिक URL https://chromewebstore.google.com/detail/drafttocalendar/khkodfcgkhljepkpapocoaojdnkbbfhc
विवरण Taking classes from DraftMySchedule and adding them to a user's Google calendar
फ़ाइल का आकार 67.89 KB
स्थापना संख्या 209
वर्तमान संस्करण 0.1.4
अंतिम अपडेट 2022-09-08
प्रकाशन तिथि 2021-08-30
रेटिंग 5.00/5 कुल 11 रेटिंग्स
डेवलपर David George
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DraftToCalendar",
    "description": "Taking classes from DraftMySchedule and adding them to a user's Google calendar",
    "version": "0.1.4",
    "manifest_version": 3,
    "oauth2": {
        "client_id": "865090149920-e0do53oficdm2hk97gnravkq5q7hgh5r.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/calendar"
        ]
    },
    "icons": {
        "16": ".\/calendar-icon.png",
        "48": ".\/calendar-icon.png",
        "128": ".\/calendar-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/draftmyschedule.uwo.ca\/*"
            ],
            "js": [
                "script1.js",
                "script2.js",
                "content.js"
            ]
        }
    ],
    "action": {
        "default_title": "DraftToCalendar",
        "default_popup": ".\/index.html"
    },
    "permissions": [
        "identity",
        "activeTab"
    ]
}