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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย uri.j.dvir และคุณลักษณะหลักของมันคือ "A browser extension that allows WPI students to download their BannerWeb schedule as a CSV file."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WPI BannerWeb to CSV

ดาวน์โหลดไฟล์ส่วนขยาย WPI BannerWeb to CSV ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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