TerpCal
Sync up your UMD schedule with your Google Calendar
What is TerpCal?
TerpCal is a Chrome extension developed by xyurobert, and its main feature is "Sync up your UMD schedule with your Google Calendar".
Extension Screenshots
Download TerpCal Extension CRX File
Download TerpCal extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | TerpCal |
ID | lbbjnjbhnkjlncfmjhhmeamnfgekkgkd |
Official URL | https://chromewebstore.google.com/detail/terpcal/lbbjnjbhnkjlncfmjhhmeamnfgekkgkd |
Description | Sync up your UMD schedule with your Google Calendar |
File Size | 30 KB |
Installation Count | 103 |
Current Version | 1.0 |
Last Updated | 2024-01-22 |
Publish Date | 2024-01-09 |
Rating | 5.00/5 Total 11 Ratings |
Developer | xyurobert |
[email protected] | |
Payment Type | free |
Extension Website | https://www.robertxu.com/#/terpcal |
Privacy Policy Page URL | https://www.robertxu.com |
Supported Languages | 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" ] } } |