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.”。
擴展截圖
下載WPI BannerWeb to CSV擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | gdlimelaphcnodijljjcdgcmbcebicnl |
| 官方網址 | 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"
}
} | |