Get class schedule from webreg
This extension will download the class schedule in ics format.
Get class schedule from webregคืออะไร?
Get class schedule from webreg เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension will download the class schedule in ics format."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Get class schedule from webreg
ดาวน์โหลดไฟล์ส่วนขยาย Get class schedule from webreg ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Note: this extension is for UCSD students only! This chrome extension enables you to generate a calendar file of your class schedule on webreg. The file is compatible with the common calendar software: google calendar, apple calendar, etc. You need to log in webreg before you can use it. Please help me improve it. https://github.com/plrectco/GetCalendar
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Get class schedule from webreg |
ID | jegpbhkmochlenmlhalmgbdcdkbgfhab |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/get-class-schedule-from-w/jegpbhkmochlenmlhalmgbdcdkbgfhab |
คำอธิบาย | This extension will download the class schedule in ics format. |
ขนาดไฟล์ | 18.21 KB |
จำนวนการติดตั้ง | 13 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2018-01-17 |
วันที่เผยแพร่ | 2018-01-16 |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/plrectco/GetCalendar |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Get class schedule from webreg", "description": "This extension will download the class schedule in ics format.", "version": "1.0", "permissions": [ "activeTab" ], "browser_action": { "default_title": "Download the class schedule", "default_popup": "popup.html", "default_icon": "icon.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/act.ucsd.edu\/*" ], "js": [ "ics.deps.min.js", "ics1.js", "script.js" ] } ] } |