DraftToCalendar

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

DraftToCalendar là gì?

DraftToCalendar là một tiện ích mở rộng Chrome được phát triển bởi David George, và tính năng chính của nó là "Taking classes from DraftMySchedule and adding them to a user's Google calendar".

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

screenshot

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

Tải xuống các tệp mở rộng DraftToCalendar 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

                        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.                    

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

Tên DraftToCalendar DraftToCalendar
ID khkodfcgkhljepkpapocoaojdnkbbfhc
URL Chính Thức https://chromewebstore.google.com/detail/drafttocalendar/khkodfcgkhljepkpapocoaojdnkbbfhc
Mô tả Taking classes from DraftMySchedule and adding them to a user's Google calendar
Kích Thước Tệp 67.89 KB
Số Lần Cài Đặt 209
Phiên Bản Hiện Tại 0.1.4
Cập Nhật Lần Cuối 2022-09-08
Ngày Phát Hành 2021-08-30
Đánh Giá 5.00/5 Tổng số 11 Đánh Giá
Nhà Phát Triển David George
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}