MadGPA
Automatically loads the previous semester's average GPA in course enroll.
MadGPAคืออะไร?
MadGPA เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Prath และคุณลักษณะหลักของมันคือ "Automatically loads the previous semester's average GPA in course enroll."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MadGPA
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | MadGPA |
ID | ngglfcpeciojeakbdenajcljcinejjpa |
URL อย่างเป็นทางการ | 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" } ] } |