UMN Classes to Calendar

Add your UMN classes to your Google Calendar through MyU

Was ist UMN Classes to Calendar?

UMN Classes to Calendar ist eine Chrome-Erweiterung, die von http://brodenwanner.com entwickelt wurde, und ihr Hauptmerkmal ist "Add your UMN classes to your Google Calendar through MyU".

Erweiterungsscreenshots

screenshot
screenshot

UMN Classes to Calendar-Erweiterungs-CRX-Datei herunterladen

Laden Sie UMN Classes to Calendar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name UMN Classes to Calendar UMN Classes to Calendar
ID hgdfmecgpajmoeionaieooohpbkibaen
Offizielle URL https://chrome.google.com/webstore/detail/hgdfmecgpajmoeionaieooohpbkibaen
Beschreibung Add your UMN classes to your Google Calendar through MyU
Dateigröße 108 KB
Installationsanzahl 540
Aktuelle Version 1.1.2
Letztes Update 2021-08-23
Veröffentlichungsdatum 2020-09-07
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler http://brodenwanner.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://umnclassestocalendar.com
Hilfeseite URL https://github.com/broden-wanner/classes-to-calendar/issues
URL der Datenschutzrichtlinien-Seite https://classestocalendar.brodenwanner.com/privacy-policy
Unterstützte Sprachen 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": []
}