USC Schedule Helper
Shows available seats, professor ratings, and gives you the ability to export your calendar!
什麼是USC Schedule Helper?
USC Schedule Helper是由https://jonlu.ca開發的Chrome擴展程式,該擴展的主要功能是“Shows available seats, professor ratings, and gives you the ability to export your calendar!”。
擴展截圖
下載USC Schedule Helper擴展crx文件
下載USC Schedule Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension makes registering for classes that much easier!
Quickly shows you:
- Rating for the professor
- How many seats are left in Lecture sections
- Whether the class is closed
- Whether the class section would conflict with your current schedule
- Emails for when a seat opens up in a class!
- Texts for when a seat opens up in a class!
Please note! The email notification service is still in Alpha and is not guaranteed to work.
Any feedback is welcome: [email protected] 擴展基本資訊
| 名稱 | |
| ID | gchplemiinhmilinflepfpmjhmbfnlhk |
| 官方網址 | https://chromewebstore.google.com/detail/usc-schedule-helper/gchplemiinhmilinflepfpmjhmbfnlhk |
| 簡介 | Shows available seats, professor ratings, and gives you the ability to export your calendar! |
| 檔案大小 | 1.23 MB |
| 安裝次數 | 20,000 |
| 目前版本 | 13.0.1 |
| 更新時間 | 2024-01-14 |
| 上架時間 | 2020-03-19 |
| 評分 | 4.86/5 共 28 次評分 |
| 開發者 | https://jonlu.ca |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/jonluca/USCSpotsRemaining |
| 說明頁面URL | https://github.com/jonluca/USCSpotsRemaining |
| 隱私政策頁面URL | https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "USC Schedule Helper",
"description": "Shows available seats, professor ratings, and gives you the ability to export your calendar!",
"version": "13.0.1",
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/classes.usc.edu\/*\/classes\/*",
"*:\/\/webreg.usc.edu\/*",
"http:\/\/jonlu.ca\/*",
"https:\/\/jonlu.ca\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/classes.usc.edu\/*\/classes\/*",
"*:\/\/webreg.usc.edu\/*"
],
"js": [
"js\/libs\/jquery.js",
"js\/common.js",
"js\/libs\/moment.js",
"js\/libs\/mailcheck.min.js",
"js\/libs\/sweetalert.min.js",
"USCScheduleHelper.js"
]
}
],
"icons": {
"64": "images\/icon64.png",
"32": "images\/icon32.png",
"38": "images\/icon.png",
"128": "images\/icon128.png"
},
"background": {
"service_worker": "js\/common.js"
},
"action": {
"default_popup": "html\/popup.html",
"default_title": "USC Schedule Helper"
},
"homepage_url": "https:\/\/jonlu.ca",
"web_accessible_resources": [
{
"resources": [
"data\/*",
"css\/*",
"images\/*",
"js\/*"
],
"matches": [
"*:\/\/*\/*"
]
}
]
} | |