UMN Classes to Calendar
Add your UMN classes to your Google Calendar through MyU
Wat is UMN Classes to Calendar?
UMN Classes to Calendar is een Chrome-extensie ontwikkeld door http://brodenwanner.com, en de belangrijkste functie is "Add your UMN classes to your Google Calendar through MyU".
Extensie Screenshots
Download het CRX-bestand van de extensie UMN Classes to Calendar
Download UMN Classes to Calendar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | |
ID | hgdfmecgpajmoeionaieooohpbkibaen |
Officiële URL | https://chrome.google.com/webstore/detail/hgdfmecgpajmoeionaieooohpbkibaen |
Beschrijving | Add your UMN classes to your Google Calendar through MyU |
Bestandsgrootte | 108 KB |
Aantal Installaties | 540 |
Huidige Versie | 1.1.2 |
Laatst Bijgewerkt | 2021-08-23 |
Publicatiedatum | 2020-09-07 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | http://brodenwanner.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://umnclassestocalendar.com |
Help Pagina-URL | https://github.com/broden-wanner/classes-to-calendar/issues |
URL van de Privacybeleid Pagina | https://classestocalendar.brodenwanner.com/privacy-policy |
Ondersteunde Talen | 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": [] } |