TerpCal

Sync up your UMD schedule with your Google Calendar

Cos'è TerpCal?

TerpCal è un'estensione di Chrome sviluppata da xyurobert, e la sua funzione principale è "Sync up your UMD schedule with your Google Calendar".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione TerpCal

Scarica i file di estensione TerpCal in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome TerpCal TerpCal
ID lbbjnjbhnkjlncfmjhhmeamnfgekkgkd
URL Ufficiale https://chromewebstore.google.com/detail/terpcal/lbbjnjbhnkjlncfmjhhmeamnfgekkgkd
Descrizione Sync up your UMD schedule with your Google Calendar
Dimensione del File 30 KB
Conteggio Installazioni 103
Versione Corrente 1.0
Ultimo Aggiornamento 2024-01-22
Data di Pubblicazione 2024-01-09
Valutazione 5.00/5 Totale 11 Valutazioni
Sviluppatore xyurobert
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.robertxu.com/#/terpcal
URL della Pagina della Politica sulla Privacy https://www.robertxu.com
Lingue Supportate 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"
        ]
    }
}