WPI BannerWeb to CSV

A browser extension that allows WPI students to download their BannerWeb schedule as a CSV file.

WPI BannerWeb to CSV क्या है?

WPI BannerWeb to CSV uri.j.dvir द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A browser extension that allows WPI students to download their BannerWeb schedule as a CSV file."।

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

screenshot

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

crx प्रारूप में WPI BannerWeb to CSV एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension will download courses from one semester (two WPI terms) to a CSV file. This file can be imported into Google Calendar. To use: log in to BannerWeb and click Student Services & Financial Aid -> Registration -> Concise Student Schedule. Next select a semester and click the "Export to CSV" button. The downloaded file can be imported into Google Calendar.

Note: this extension only works on WPI BannerWeb.

Code may be found at https://github.com/uridvir/wpi_bannerweb_csv

Changelog:
1.0: First release!
1.1: Day-off and special schedule day detection added (also now available on Firefox)
1.1.1: Removed annoying console.log calls
1.1.2: Fixed courses with TBA times crashing
1.1.3: Fixed commas in course title corrupting data
1.1.4: Fixed issue caused by updated calendar page                    

एक्सटेंशन की मूल जानकारी

नाम WPI BannerWeb to CSV WPI BannerWeb to CSV
ID gdlimelaphcnodijljjcdgcmbcebicnl
आधिकारिक URL https://chromewebstore.google.com/detail/wpi-bannerweb-to-csv/gdlimelaphcnodijljjcdgcmbcebicnl
विवरण A browser extension that allows WPI students to download their BannerWeb schedule as a CSV file.
फ़ाइल का आकार 16.71 KB
स्थापना संख्या 41
वर्तमान संस्करण 1.1.4
अंतिम अपडेट 2020-01-15
प्रकाशन तिथि 2020-01-14
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर uri.j.dvir
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WPI BannerWeb to CSV",
    "version": "1.1.4",
    "description": "A browser extension that allows WPI students to download their BannerWeb schedule as a CSV file.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bannerweb.wpi.edu\/pls\/prod\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "imports.js",
            "calendar_page.js",
            "download.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "course.js",
        "schedule_changes.js"
    ],
    "permissions": [
        "downloads",
        "https:\/\/bannerweb.wpi.edu\/pls\/prod\/*",
        "https:\/\/www.wpi.edu\/offices\/registrar\/calendar"
    ],
    "icons": {
        "128": "128.png"
    }
}