UW iCal

This extension generates an iCal version of your schedule, right in MyUW.

ما هو UW iCal؟

UW iCal هو إضافة Chrome تم تطويرها بواسطة Kyle Yan، والميزة الرئيسية لها هي "This extension generates an iCal version of your schedule, right in MyUW.".

تحميل ملف CRX للإضافة UW iCal

قم بتنزيل ملفات الامتداد UW iCal بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Export your UW schedule into an iCal file right inside MyUW. 
Open MyUW, and you will see a link "Export Schedule" in the upper right corner. An .ics file will be downloaded, and you can import this file to your calendar apps.                    

معلومات أساسية عن التمديد

الاسم UW iCal UW iCal
ID jfiokfdebocaoojaaolgomidmkamfkod
عنوان URL الرسمي https://chrome.google.com/webstore/detail/uw-ical/jfiokfdebocaoojaaolgomidmkamfkod
الوصف This extension generates an iCal version of your schedule, right in MyUW.
حجم الملف 78.28 KB
عدد التثبيتات 70
النسخة الحالية 1.5
آخر تحديث 2017-09-15
تاريخ النشر 2017-09-15
تقييم 5.00/5 مجموع تقييمات 2
المطور Kyle Yan
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://kaichengyan.github.io/uw-ical
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UW iCal",
    "description": "This extension generates an iCal version of your schedule, right in MyUW.",
    "version": "1.5",
    "author": "Kyle Yan",
    "browser_action": {
        "default_icon": {
            "128": "128.png",
            "48": "48.png",
            "16": "16.png"
        },
        "default_title": "UW iCal"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/my.uw.edu\/*",
                "http:\/\/my.uw.edu\/*"
            ],
            "js": [
                "ical.min.js",
                "FileSaver.min.js",
                "jquery-3.2.1.min.js",
                "myuw.js"
            ]
        }
    ]
}