UW iCal
This extension generates an iCal version of your schedule, right in MyUW.
O que é UW iCal?
UW iCal é uma extensão do Chrome desenvolvida por Kyle Yan, e sua principal característica é "This extension generates an iCal version of your schedule, right in MyUW.".
Baixar o arquivo CRX da Extensão UW iCal
Baixe arquivos de extensão UW iCal no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | jfiokfdebocaoojaaolgomidmkamfkod |
URL Oficial | https://chrome.google.com/webstore/detail/uw-ical/jfiokfdebocaoojaaolgomidmkamfkod |
Descrição | This extension generates an iCal version of your schedule, right in MyUW. |
Tamanho do Arquivo | 78.28 KB |
Contagem de Instalações | 70 |
Versão Atual | 1.5 |
Última Atualização | 2017-09-15 |
Data de Publicação | 2017-09-15 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Kyle Yan |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://kaichengyan.github.io/uw-ical |
Idiomas Suportados | 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" ] } ] } |