TerpCal
Sync up your UMD schedule with your Google Calendar
什麼是TerpCal?
TerpCal是由xyurobert開發的Chrome擴展程式,該擴展的主要功能是“Sync up your UMD schedule with your Google Calendar”。
擴展截圖
下載TerpCal擴展crx文件
下載TerpCal擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Enhance your academic experience with TerpCal, a Chrome extension designed to streamline your schedule management. Directly from your Testudo portal, effortlessly add, update, and delete your schedule into Google Calendar with just a click.
擴展基本資訊
名稱 | TerpCal |
ID | lbbjnjbhnkjlncfmjhhmeamnfgekkgkd |
官方網址 | https://chromewebstore.google.com/detail/terpcal/lbbjnjbhnkjlncfmjhhmeamnfgekkgkd |
簡介 | Sync up your UMD schedule with your Google Calendar |
檔案大小 | 30 KB |
安裝次數 | 103 |
目前版本 | 1.0 |
更新時間 | 2024-01-22 |
上架時間 | 2024-01-09 |
評分 | 5.00/5 共 11 次評分 |
開發者 | xyurobert |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://www.robertxu.com/#/terpcal |
隱私政策頁面URL | https://www.robertxu.com |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "TerpCal", "version": "1.0", "description": "Sync up your UMD schedule with your Google Calendar", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "identity" ], "content_scripts": [ { "matches": [ "*:\/\/app.testudo.umd.edu\/*" ], "js": [ "script.js" ], "css": [ "styles.css" ] } ], "background": { "service_worker": "background.js" }, "oauth2": { "client_id": "58685306669-ebmle6f74bovjl9up6vjhkmvsuqs4mvi.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/calendar" ] } } |