Get class schedule from webreg
This extension will download the class schedule in ics format.
Get class schedule from webreg là gì?
Get class schedule from webreg là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension will download the class schedule in ics format.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Get class schedule from webreg
Tải xuống các tệp mở rộng Get class schedule from webreg 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Get class schedule from webreg |
ID | jegpbhkmochlenmlhalmgbdcdkbgfhab |
URL Chính Thức | https://chromewebstore.google.com/detail/get-class-schedule-from-w/jegpbhkmochlenmlhalmgbdcdkbgfhab |
Mô tả | This extension will download the class schedule in ics format. |
Kích Thước Tệp | 18.21 KB |
Số Lần Cài Đặt | 13 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2018-01-17 |
Ngày Phát Hành | 2018-01-16 |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/plrectco/GetCalendar |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |