UW iCal
This extension generates an iCal version of your schedule, right in MyUW.
UW iCal là gì?
UW iCal là một tiện ích mở rộng Chrome được phát triển bởi Kyle Yan, và tính năng chính của nó là "This extension generates an iCal version of your schedule, right in MyUW.".
Tải xuống tệp CRX của tiện ích mở rộng UW iCal
Tải xuống các tệp mở rộng UW iCal dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | jfiokfdebocaoojaaolgomidmkamfkod |
URL Chính Thức | https://chrome.google.com/webstore/detail/uw-ical/jfiokfdebocaoojaaolgomidmkamfkod |
Mô tả | This extension generates an iCal version of your schedule, right in MyUW. |
Kích Thước Tệp | 78.28 KB |
Số Lần Cài Đặt | 70 |
Phiên Bản Hiện Tại | 1.5 |
Cập Nhật Lần Cuối | 2017-09-15 |
Ngày Phát Hành | 2017-09-15 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Kyle Yan |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://kaichengyan.github.io/uw-ical |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |