DraftToCalendar

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

什么是DraftToCalendar?

DraftToCalendar是由David George开发的Chrome扩展程序,该扩展的主要功能是“Taking classes from DraftMySchedule and adding them to a user's Google calendar”。

扩展截图

screenshot

下载DraftToCalendar扩展crx文件

下载DraftToCalendar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}