TerpCal

Sync up your UMD schedule with your Google Calendar

ما هو TerpCal؟

TerpCal هو إضافة Chrome تم تطويرها بواسطة xyurobert، والميزة الرئيسية لها هي "Sync up your UMD schedule with your Google Calendar".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة TerpCal

قم بتنزيل ملفات الامتداد TerpCal بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة سياسة الخصوصية 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"
        ]
    }
}