TerpCal

Sync up your UMD schedule with your Google Calendar

TerpCal là gì?

TerpCal là một tiện ích mở rộng Chrome được phát triển bởi xyurobert, và tính năng chính của nó là "Sync up your UMD schedule with your Google Calendar".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng TerpCal

Tải xuống các tệp mở rộng TerpCal dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TerpCal TerpCal
ID lbbjnjbhnkjlncfmjhhmeamnfgekkgkd
URL Chính Thức https://chromewebstore.google.com/detail/terpcal/lbbjnjbhnkjlncfmjhhmeamnfgekkgkd
Mô tả Sync up your UMD schedule with your Google Calendar
Kích Thước Tệp 30 KB
Số Lần Cài Đặt 103
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2024-01-22
Ngày Phát Hành 2024-01-09
Đánh Giá 5.00/5 Tổng số 11 Đánh Giá
Nhà Phát Triển xyurobert
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.robertxu.com/#/terpcal
URL Trang Chính Sách Bảo Mật https://www.robertxu.com
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}