UMN Classes to Calendar
Add your UMN classes to your Google Calendar through MyU
ما هو UMN Classes to Calendar؟
UMN Classes to Calendar هو إضافة Chrome تم تطويرها بواسطة http://brodenwanner.com، والميزة الرئيسية لها هي "Add your UMN classes to your Google Calendar through MyU".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة UMN Classes to Calendar
قم بتنزيل ملفات الامتداد UMN Classes to Calendar بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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!
معلومات أساسية عن التمديد
الاسم | |
ID | hgdfmecgpajmoeionaieooohpbkibaen |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/hgdfmecgpajmoeionaieooohpbkibaen |
الوصف | Add your UMN classes to your Google Calendar through MyU |
حجم الملف | 108 KB |
عدد التثبيتات | 540 |
النسخة الحالية | 1.1.2 |
آخر تحديث | 2021-08-23 |
تاريخ النشر | 2020-09-07 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | http://brodenwanner.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://umnclassestocalendar.com |
عنوان صفحة المساعدة | https://github.com/broden-wanner/classes-to-calendar/issues |
عنوان صفحة سياسة الخصوصية | https://classestocalendar.brodenwanner.com/privacy-policy |
اللغات المدعومة | 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": [] } |