TerpCal
Sync up your UMD schedule with your Google Calendar
Qu'est-ce que TerpCal ?
TerpCal est une extension Chrome développée par xyurobert, et sa fonction principale est "Sync up your UMD schedule with your Google Calendar".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TerpCal
Téléchargez les fichiers d'extension TerpCal au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | TerpCal |
ID | lbbjnjbhnkjlncfmjhhmeamnfgekkgkd |
URL Officiel | https://chromewebstore.google.com/detail/terpcal/lbbjnjbhnkjlncfmjhhmeamnfgekkgkd |
Description | Sync up your UMD schedule with your Google Calendar |
Taille du Fichier | 30 KB |
Nombre d'Installations | 103 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2024-01-22 |
Date de Publication | 2024-01-09 |
Évaluation | 5.00/5 Total 11 Évaluations |
Développeur | xyurobert |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.robertxu.com/#/terpcal |
URL de la Page de Politique de Confidentialité | https://www.robertxu.com |
Langues Prises en Charge | 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" ] } } |