PowerStudent
Adds helpful tools and information to WHPS PowerSchool page for students
PowerStudent란 무엇입니까?
PowerStudent은(는) Eric Zeiberg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds helpful tools and information to WHPS PowerSchool page for students"입니다.
확장 프로그램 스크린샷
PowerStudent 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |