TerpCal
Sync up your UMD schedule with your Google Calendar
什么是TerpCal?
TerpCal是由xyurobert开发的Chrome扩展程序,该扩展的主要功能是“Sync up your UMD schedule with your Google Calendar”。
扩展截图
下载TerpCal扩展crx文件
下载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 |
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" ] } } |