UMN Classes to Calendar
Add your UMN classes to your Google Calendar through MyU
Co to jest UMN Classes to Calendar?
UMN Classes to Calendar to rozszerzenie Chrome opracowane przez http://brodenwanner.com, a jego główną funkcją jest „Add your UMN classes to your Google Calendar through MyU”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia UMN Classes to Calendar
Pobierz pliki rozszerzeń UMN Classes to Calendar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | hgdfmecgpajmoeionaieooohpbkibaen |
Oficjalny URL | https://chrome.google.com/webstore/detail/hgdfmecgpajmoeionaieooohpbkibaen |
Opis | Add your UMN classes to your Google Calendar through MyU |
Rozmiar pliku | 108 KB |
Liczba instalacji | 540 |
Aktualna Wersja | 1.1.2 |
Ostatnia Aktualizacja | 2021-08-23 |
Data Publikacji | 2020-09-07 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | http://brodenwanner.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://umnclassestocalendar.com |
Adres URL Strony Pomocy | https://github.com/broden-wanner/classes-to-calendar/issues |
Adres URL Strony Polityki Prywatności | https://classestocalendar.brodenwanner.com/privacy-policy |
Obsługiwane Języki | 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": [] } |