UMN Classes to Calendar
Add your UMN classes to your Google Calendar through MyU
什么是UMN Classes to Calendar?
UMN Classes to Calendar是由http://brodenwanner.com开发的Chrome扩展程序,该扩展的主要功能是“Add your UMN classes to your Google Calendar through MyU”。
扩展截图
下载UMN Classes to Calendar扩展crx文件
下载UMN Classes to Calendar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
No more meticulously adding your class schedule to your calendar manually! This extension adds a button to your UMN MyU class calendar that allows you to quickly add your class schedule to your Google Calendar or export it to any other calendar. Simply install the extension, go to the "Academics" tab in MyU, and click on the "Add to Google Calendar" button. You can then choose to add it to a new or existing calendar, and you're done!
扩展基本信息
名称 | |
ID | hgdfmecgpajmoeionaieooohpbkibaen |
官方URL | https://chrome.google.com/webstore/detail/hgdfmecgpajmoeionaieooohpbkibaen |
简介 | Add your UMN classes to your Google Calendar through MyU |
文件大小 | 108 KB |
安装次数 | 540 |
当前版本 | 1.1.2 |
更新时间 | 2021-08-23 |
上架时间 | 2020-09-07 |
评分 | 5.00/5 共1次评分 |
开发者 | http://brodenwanner.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://umnclassestocalendar.com |
帮助页面URL | https://github.com/broden-wanner/classes-to-calendar/issues |
隐私政策页面URL | https://classestocalendar.brodenwanner.com/privacy-policy |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "short_name": "UMN Classes to Calendar", "name": "UMN Classes to Calendar", "description": "Add your UMN classes to your Google Calendar through MyU", "version": "1.1.2", "manifest_version": 2, "icons": { "16": "icons\/favicon-16x16.png", "32": "icons\/favicon-32x32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png", "192": "icons\/android-chrome-192x192.png", "512": "icons\/android-chrome-512x512.png" }, "permissions": [ "declarativeContent", "activeTab", "*:\/\/*.myu.umn.edu\/*", "*:\/\/classestocalendar.brodenwanner.com\/*", "*:\/\/*.umnclassestocalendar.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.myu.umn.edu\/*" ], "js": [ "content.js" ] } ], "browser_action": [] } |