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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension that allows WPI students to download their BannerWeb schedule as a CSV file."입니다.

확장 프로그램 스크린샷

screenshot

WPI BannerWeb to CSV 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}