UMN Classes to Calendar
Add your UMN classes to your Google Calendar through MyU
UMN Classes to Calendar là gì?
UMN Classes to Calendar là một tiện ích mở rộng Chrome được phát triển bởi http://brodenwanner.com, và tính năng chính của nó là "Add your UMN classes to your Google Calendar through MyU".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng UMN Classes to Calendar
Tải xuống các tệp mở rộng UMN Classes to Calendar 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
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | hgdfmecgpajmoeionaieooohpbkibaen |
URL Chính Thức | https://chrome.google.com/webstore/detail/hgdfmecgpajmoeionaieooohpbkibaen |
Mô tả | Add your UMN classes to your Google Calendar through MyU |
Kích Thước Tệp | 108 KB |
Số Lần Cài Đặt | 540 |
Phiên Bản Hiện Tại | 1.1.2 |
Cập Nhật Lần Cuối | 2021-08-23 |
Ngày Phát Hành | 2020-09-07 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | http://brodenwanner.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://umnclassestocalendar.com |
URL Trang Trợ Giúp | https://github.com/broden-wanner/classes-to-calendar/issues |
URL Trang Chính Sách Bảo Mật | https://classestocalendar.brodenwanner.com/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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": [] } |