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文件

下载Workday Schedule Exporter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}