UM Calendar Downloader
An automatic organizer tool to load course schedules in wolverine access to google calendar
UM Calendar Downloader क्या है?
UM Calendar Downloader camillgi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An automatic organizer tool to load course schedules in wolverine access to google calendar"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में UM Calendar Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
एक्सटेंशन की मूल जानकारी
नाम | |
ID | doepoieoohnakcjcdldghcpcajajlild |
आधिकारिक URL | https://chrome.google.com/webstore/detail/um-calendar-downloader/doepoieoohnakcjcdldghcpcajajlild |
विवरण | An automatic organizer tool to load course schedules in wolverine access to google calendar |
फ़ाइल का आकार | 1.75 MB |
स्थापना संख्या | 26 |
वर्तमान संस्करण | 0.0.0.1 |
अंतिम अपडेट | 2018-12-08 |
प्रकाशन तिथि | 2018-12-05 |
रेटिंग | 4.50/5 कुल 2 रेटिंग्स |
डेवलपर | camillgi |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" ] } |