PowerStudent
Adds helpful tools and information to WHPS PowerSchool page for students
PowerStudentคืออะไร?
PowerStudent เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Eric Zeiberg และคุณลักษณะหลักของมันคือ "Adds helpful tools and information to WHPS PowerSchool page for students"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PowerStudent
ดาวน์โหลดไฟล์ส่วนขยาย PowerStudent ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Designed for use by West Hartford Public School students This extension adds a lot of new functionality to your PowerSchool page! FEATURES: - Add "fake" assignments to a class to see how they will affect your average ("If I get an 85 on my test, what grade will I have now?") - Remove assignments from a class to see how they would affect your average ("Rats! If I hadn't gotten a D on that essay, my grade would be a...") - See your GPA per quarter / semester live, as grades change. This extension works with both total point grading systems and weighted grading systems. MORE TO COME SOON! PS: This extension is still in beta, there will probably be bugs here and there. Please report back to Eric if you find a bug.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | PowerStudent |
ID | jlapkdomihdknaijbhjgcmhcnjebemmn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/powerstudent/jlapkdomihdknaijbhjgcmhcnjebemmn |
คำอธิบาย | Adds helpful tools and information to WHPS PowerSchool page for students |
ขนาดไฟล์ | 270 KB |
จำนวนการติดตั้ง | 59 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2016-10-17 |
วันที่เผยแพร่ | 2016-10-16 |
ผู้พัฒนา | Eric Zeiberg |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://ericzeiberg.com |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PowerStudent", "description": "Adds helpful tools and information to WHPS PowerSchool page for students", "version": "1.1", "background": { "scripts": [ "jquery.min.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/powerschool.whps.org\/guardian\/scores.html?*" ], "js": [ "jquery.min.js", "gradesPage.js" ] }, { "matches": [ "https:\/\/powerschool.whps.org\/guardian\/home.html" ], "js": [ "jquery.min.js", "mainPage.js" ] } ], "icons": { "16": "icon-ps.png", "48": "icon-ps.png", "128": "icon-ps.png" }, "permissions": [ "http:\/\/powerschool.whps.org\/", "https:\/\/powerschool.whps.org\/", "https:\/\/powerschool.whps.org\/public\/", "tabs", "storage", "cookies", "notifications" ] } |