UW iCal

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

Qu'est-ce que UW iCal ?

UW iCal est une extension Chrome développée par Kyle Yan, et sa fonction principale est "This extension generates an iCal version of your schedule, right in MyUW.".

Télécharger le fichier CRX de l'extension UW iCal

Téléchargez les fichiers d'extension UW iCal au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom UW iCal UW iCal
ID jfiokfdebocaoojaaolgomidmkamfkod
URL Officiel https://chrome.google.com/webstore/detail/uw-ical/jfiokfdebocaoojaaolgomidmkamfkod
Description This extension generates an iCal version of your schedule, right in MyUW.
Taille du Fichier 78.28 KB
Nombre d'Installations 70
Version Actuelle 1.5
Dernière Mise à Jour 2017-09-15
Date de Publication 2017-09-15
Évaluation 5.00/5 Total 2 Évaluations
Développeur Kyle Yan
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://kaichengyan.github.io/uw-ical
Langues Prises en Charge 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"
            ]
        }
    ]
}