Workday Schedule Exporter

Adds the functionality to export a course schedule from Workday

Workday Schedule Exporter क्या है?

Workday Schedule Exporter https://gsconrad.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds the functionality to export a course schedule from Workday"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Workday Schedule Exporter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}