UW iCal
This extension generates an iCal version of your schedule, right in MyUW.
Co to jest UW iCal?
UW iCal to rozszerzenie Chrome opracowane przez Kyle Yan, a jego główną funkcją jest „This extension generates an iCal version of your schedule, right in MyUW.”.
Pobierz plik CRX rozszerzenia UW iCal
Pobierz pliki rozszerzeń UW iCal w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | jfiokfdebocaoojaaolgomidmkamfkod |
Oficjalny URL | https://chrome.google.com/webstore/detail/uw-ical/jfiokfdebocaoojaaolgomidmkamfkod |
Opis | This extension generates an iCal version of your schedule, right in MyUW. |
Rozmiar pliku | 78.28 KB |
Liczba instalacji | 70 |
Aktualna Wersja | 1.5 |
Ostatnia Aktualizacja | 2017-09-15 |
Data Publikacji | 2017-09-15 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Kyle Yan |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://kaichengyan.github.io/uw-ical |
Obsługiwane Języki | 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" ] } ] } |