MadGPA
Automatically loads the previous semester's average GPA in course enroll.
什麼是MadGPA?
MadGPA是由Prath開發的Chrome擴展程式,該擴展的主要功能是“Automatically loads the previous semester's average GPA in course enroll.”。
擴展截圖
下載MadGPA擴展crx文件
下載MadGPA擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Helps you select the best & easiest courses to enroll in at the University of Wisconsin - Madison. Have you ever tried to find the easiest course offering of a certain degree requirement? This extension solves that problem! By overlaying previous semesters average GPA in course enroll, this extension removes the pain of finding a course and then checking it against a grade distribution site. 擴展基本資訊
| 名稱 | |
| ID | ngglfcpeciojeakbdenajcljcinejjpa |
| 官方網址 | https://chromewebstore.google.com/detail/madgpa/ngglfcpeciojeakbdenajcljcinejjpa |
| 簡介 | Automatically loads the previous semester's average GPA in course enroll. |
| 檔案大小 | 33.26 KB |
| 安裝次數 | 285 |
| 目前版本 | 3.00 |
| 更新時間 | 2023-02-03 |
| 上架時間 | 2023-01-31 |
| 評分 | 5.00/5 共 7 次評分 |
| 開發者 | Prath |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://pite.vercel.app/#projects |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "MadGPA",
"description": "Automatically loads the previous semester's average GPA in course enroll.",
"version": "3.00",
"icons": {
"32": "icons\/32.png",
"128": "icons\/128.png"
},
"permissions": [
"storage"
],
"action": {
"default_popup": "popup.html"
},
"host_permissions": [
"https:\/\/github.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.enroll.wisc.edu\/*",
"https:\/\/enroll.wisc.edu\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_end"
}
]
} | |