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 |
公式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 |
Eメール | [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" ] } |