TerpCal

Sync up your UMD schedule with your Google Calendar

TerpCal क्या है?

TerpCal xyurobert द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sync up your UMD schedule with your Google Calendar"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में TerpCal एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम TerpCal TerpCal
ID lbbjnjbhnkjlncfmjhhmeamnfgekkgkd
आधिकारिक URL https://chromewebstore.google.com/detail/terpcal/lbbjnjbhnkjlncfmjhhmeamnfgekkgkd
विवरण Sync up your UMD schedule with your Google Calendar
फ़ाइल का आकार 30 KB
स्थापना संख्या 103
वर्तमान संस्करण 1.0
अंतिम अपडेट 2024-01-22
प्रकाशन तिथि 2024-01-09
रेटिंग 5.00/5 कुल 11 रेटिंग्स
डेवलपर xyurobert
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.robertxu.com/#/terpcal
गोपनीयता नीति पृष्ठ URL https://www.robertxu.com
समर्थित भाषाएँ 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"
        ]
    }
}