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”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | khkodfcgkhljepkpapocoaojdnkbbfhc |
官方網址 | 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" ] } |