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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
        ]
    }
}