UM Calendar Downloader
An automatic organizer tool to load course schedules in wolverine access to google calendar
What is UM Calendar Downloader?
UM Calendar Downloader is a Chrome extension developed by camillgi, and its main feature is "An automatic organizer tool to load course schedules in wolverine access to google calendar".
Extension Screenshots
Download UM Calendar Downloader Extension CRX File
Download UM Calendar Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension Basic Information
Name | |
ID | doepoieoohnakcjcdldghcpcajajlild |
Official URL | https://chrome.google.com/webstore/detail/um-calendar-downloader/doepoieoohnakcjcdldghcpcajajlild |
Description | An automatic organizer tool to load course schedules in wolverine access to google calendar |
File Size | 1.75 MB |
Installation Count | 26 |
Current Version | 0.0.0.1 |
Last Updated | 2018-12-08 |
Publish Date | 2018-12-05 |
Rating | 4.50/5 Total 2 Ratings |
Developer | camillgi |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "UM Calendar Downloader", "version": "0.0.0.1", "description": "An automatic organizer tool to load course schedules in wolverine access to google calendar", "icons": { "128": "SlayTheDayIcon.png", "48": "SlayTheDayIcon.png", "16": "SlayTheDayIcon.png" }, "browser_action": { "default_icon": "SlayTheDayIcon.png", "default_title": "Autoload UMich Schedule", "default_popup": "popup.html" }, "background": { "scripts": [ "eventPage.js", "jquery-3.3.1.min.js", "ics.deps.min.js", "ics.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/csprod.dsc.umich.edu\/psc\/csprodnonop\/EMPLOYEE\/SA\/c\/*" ], "js": [ "angular.min.js", "jquery-3.3.1.min.js" ] } ], "permissions": [ "storage", "tabs", "activeTab", "*:\/\/*\/*", "https:\/\/csprod.dsc.umich.edu\/psp\/csprodnonop\/EMPLOYEE\/SA\/c\/*" ], "web_accessible_resources": [ "SlayTheDayIcon.png" ] } |