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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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" ] } ] } |