Workday Schedule Exporter

Adds the functionality to export a course schedule from Workday

Workday Schedule Exporter란 무엇입니까?

Workday Schedule Exporter은(는) https://gsconrad.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds the functionality to export a course schedule from Workday"입니다.

확장 프로그램 스크린샷

screenshot

Workday Schedule Exporter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Workday Schedule Exporter Workday Schedule Exporter
ID elloafhmffcedcmbdepancjijjccmail
공식 URL https://chromewebstore.google.com/detail/workday-schedule-exporter/elloafhmffcedcmbdepancjijjccmail
설명 Adds the functionality to export a course schedule from Workday
파일 크기 911 KB
설치 횟수 285
현재 버전 1.0.5
최근 업데이트 2022-01-16
출시 날짜 2021-12-29
평점 5.00/5 총 2 개의 평점
개발자 https://gsconrad.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/GregoryConrad/WorkdayScheduleExporter
도움말 페이지 URL https://github.com/GregoryConrad/WorkdayScheduleExporter/issues
지원되는 언어 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"
    }
}