PowerSchool GPA Calculator
Automatic GPA Calculator for PowerSchool, still in development as of 11/11/23!
PowerSchool GPA Calculator란 무엇입니까?
PowerSchool GPA Calculator은(는) grahamzemel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatic GPA Calculator for PowerSchool, still in development as of 11/11/23!"입니다.
확장 프로그램 스크린샷
PowerSchool GPA Calculator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A tool to help students navigate their grades more efficiently, containing GPA information seamlessly incorporated into the PowerSchool web app. V1.3.0: Bug Fixes - Fixed mathematical function issues that caused the GPA to display roughly 0.05 points higher (on a 4.0 scale) than reflected on official documents. --- Coming Soon: - Cookies! Currently enabled only for sorting, soon to be enabled for AP and Honors level toggles! Known Issues: - None! Please contact me via grahamzemel.com/contact with feedback/suggestions if you come across an issue. Created by Graham Zemel SHS '24 --- Past Versions: V1.2.0: New features! - Added secondary sorting based on if the class is in progress. - Added official weighted and unweighted GPAs updated each quarter by SHS in the top right. - Updated mathematics functions. - Bug fixes. V1.1.0: New features! - Added header to display overall GPAs (both weighted and unweighted) at the top of the page. - Added AP and Honors weighing to all classes with individual checkboxes. - Updated mathematics functions. V1.0.0 Product Release - Created a GPA Calculator extension to calculate student GPAs.
확장 프로그램 기본 정보
이름 | PowerSchool GPA Calculator |
ID | dgfnbmfhjioifionnlcklnpfkkjjglbj |
공식 URL | https://chromewebstore.google.com/detail/powerschool-gpa-calculato/dgfnbmfhjioifionnlcklnpfkkjjglbj |
설명 | Automatic GPA Calculator for PowerSchool, still in development as of 11/11/23! |
파일 크기 | 43.27 KB |
설치 횟수 | 2,524 |
현재 버전 | 1.3.0 |
최근 업데이트 | 2023-11-12 |
출시 날짜 | 2022-12-14 |
평점 | 4.33/5 총 6 개의 평점 |
개발자 | grahamzemel |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://grahamzemel.com/projects/powerschool-gpa-calculator |
도움말 페이지 URL | https://grahamzemel.com/contact |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "PowerSchool GPA Calculator", "short_name": "GPA Calculator", "version": "1.3.0", "author": "Graham Zemel", "description": "Automatic GPA Calculator for PowerSchool, still in development as of 11\/11\/23!", "icons": { "128": "image.png" }, "action": { "default_title": "Get PowerSchool Grades & GPA", "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "include_globs": [ "*powerschool.*", "*ps.*", "*scores.html*", "portal", "k12" ], "exclude_globs": [ "*home*", "*attendance*", "*requestform*", "*schoolinformation*", "*termgrades*" ], "js": [ "jquery-2.2.2.min.js" ] }, { "matches": [ "https:\/\/*\/*" ], "include_globs": [ "*powerschool.*", "*ps.*", "*home.html*", "portal", "k12" ], "exclude_globs": [ "*scores*", "*attendance*", "*requestform*", "*schoolinformation*", "*termgrades*" ], "js": [ "jquery-2.2.2.min.js", "GPACalc.js" ] } ], "web_accessible_resources": [ { "resources": [ "jquery-2.2.2.min.js", "GPACalc.js" ], "matches": [ "https:\/\/*\/*" ], "extension_ids": [ "*" ] } ], "options_page": "options.html", "options_ui": { "page": "options.html" } } |