Workday Schedule Exporter
Adds the functionality to export a course schedule from Workday
Workday Schedule Exporter là gì?
Workday Schedule Exporter là một tiện ích mở rộng Chrome được phát triển bởi https://gsconrad.com, và tính năng chính của nó là "Adds the functionality to export a course schedule from Workday".
Ả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 Workday Schedule Exporter
Tải xuống các tệp mở rộng Workday Schedule Exporter 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
Adds a button to the (WPI) Workday "View My Courses" page that enables you to download your schedule as a calendar (.ics format) which can then be easily imported into your calendar of choice. Meant for WPI's Workday but it may work with other schools' Workday as well. Usage: 1. Go to Workday (for WPI this is https://wd5.myworkday.com/wpi/) 2. Click "Academics" 3. Click "View My Courses" on the right sidebar under "Planning & Registration" 4. Click the "Download Schedule" button 5. Enjoy your downloaded schedule Steps to import your schedule into Google Calendar: https://support.google.com/calendar/answer/37118 Steps to import your schedule into Apple Calendar: https://support.apple.com/guide/calendar/import-or-export-calendars-icl1023/mac
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Workday Schedule Exporter |
ID | elloafhmffcedcmbdepancjijjccmail |
URL Chính Thức | https://chromewebstore.google.com/detail/workday-schedule-exporter/elloafhmffcedcmbdepancjijjccmail |
Mô tả | Adds the functionality to export a course schedule from Workday |
Kích Thước Tệp | 911 KB |
Số Lần Cài Đặt | 285 |
Phiên Bản Hiện Tại | 1.0.5 |
Cập Nhật Lần Cuối | 2022-01-16 |
Ngày Phát Hành | 2021-12-29 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://gsconrad.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/GregoryConrad/WorkdayScheduleExporter |
URL Trang Trợ Giúp | https://github.com/GregoryConrad/WorkdayScheduleExporter/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Workday Schedule Exporter", "description": "Adds the functionality to export a course schedule from Workday", "version": "1.0.5", "author": "Gregory Conrad", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png" }, "permissions": [ "webRequest" ], "host_permissions": [ "https:\/\/wd5.myworkday.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/wd5.myworkday.com\/*" ], "js": [ "main.js" ] } ], "background": { "service_worker": "worker.js" } } |