TerpCal
Sync up your UMD schedule with your Google Calendar
Wat is TerpCal?
TerpCal is een Chrome-extensie ontwikkeld door xyurobert, en de belangrijkste functie is "Sync up your UMD schedule with your Google Calendar".
Extensie Screenshots
Download het CRX-bestand van de extensie TerpCal
Download TerpCal-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | TerpCal |
ID | lbbjnjbhnkjlncfmjhhmeamnfgekkgkd |
Officiële URL | https://chromewebstore.google.com/detail/terpcal/lbbjnjbhnkjlncfmjhhmeamnfgekkgkd |
Beschrijving | Sync up your UMD schedule with your Google Calendar |
Bestandsgrootte | 30 KB |
Aantal Installaties | 103 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2024-01-22 |
Publicatiedatum | 2024-01-09 |
Beoordeling | 5.00/5 Totaal 11 Beoordelingen |
Ontwikkelaar | xyurobert |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.robertxu.com/#/terpcal |
URL van de Privacybeleid Pagina | https://www.robertxu.com |
Ondersteunde Talen | 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" ] } } |