TerpCal
Sync up your UMD schedule with your Google Calendar
Apa itu TerpCal?
TerpCal adalah ekstensi Chrome yang dikembangkan oleh xyurobert, dan fitur utamanya adalah "Sync up your UMD schedule with your Google Calendar".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi TerpCal
Unduh file ekstensi TerpCal dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | TerpCal |
ID | lbbjnjbhnkjlncfmjhhmeamnfgekkgkd |
URL Resmi | https://chromewebstore.google.com/detail/terpcal/lbbjnjbhnkjlncfmjhhmeamnfgekkgkd |
Deskripsi | Sync up your UMD schedule with your Google Calendar |
Ukuran File | 30 KB |
Jumlah Instalasi | 103 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2024-01-22 |
Tanggal Publikasi | 2024-01-09 |
Penilaian | 5.00/5 Total 11 Penilaian |
Pengembang | xyurobert |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.robertxu.com/#/terpcal |
URL Halaman Kebijakan Privasi | https://www.robertxu.com |
Bahasa yang Didukung | 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" ] } } |