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 |
官方網址 | 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": [] } |