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文件
下載PowerSchool GPA Calculator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } |