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