TerpCal

Sync up your UMD schedule with your Google Calendar

Vad är TerpCal?

TerpCal är en Chrome-tillägg utvecklad av xyurobert, och dess huvudfunktion är "Sync up your UMD schedule with your Google Calendar".

Tilläggsskärmbilder

screenshot

Ladda ner TerpCal-förlängningens CRX-fil

Ladda ner TerpCal-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn TerpCal TerpCal
ID lbbjnjbhnkjlncfmjhhmeamnfgekkgkd
Officiell webbadress https://chromewebstore.google.com/detail/terpcal/lbbjnjbhnkjlncfmjhhmeamnfgekkgkd
Beskrivning Sync up your UMD schedule with your Google Calendar
Filstorlek 30 KB
Antal Installationer 103
Aktuell Version 1.0
Senast Uppdaterad 2024-01-22
Publiceringsdatum 2024-01-09
Betyg 5.00/5 Totalt 11 Betyg
Utvecklare xyurobert
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.robertxu.com/#/terpcal
URL till Sekretesspolicy Sidan https://www.robertxu.com
Stödda Språk 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"
        ]
    }
}