PowerSchool Grade Calculator
An extension that will automatically calculate your grades for powerschool and print them on the page next to your letter grade.
什么是PowerSchool Grade Calculator?
PowerSchool Grade Calculator是由kyleai开发的Chrome扩展程序,该扩展的主要功能是“An extension that will automatically calculate your grades for powerschool and print them on the page next to your letter grade.”。
扩展截图
下载PowerSchool Grade Calculator扩展crx文件
下载PowerSchool Grade Calculator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension will average out your grades on PowerSchool to give you an average if the school has turned it off. It also gets your GPA on the main page, past grades, and can get weighted grades. It should work for every school's site, if it doesn't, click "support", and contact me, and I'll try to figure it out. Please note: This app is made by me independent of Powerschool, and is in no way affiliated with Powerschool. View source code, changelog, and privacy policy here: https://github.com/kyleai/getGrade Made by Kyle
扩展基本信息
名称 | PowerSchool Grade Calculator |
ID | omoffjbdckolacanfbappkfdaacmbjnd |
官方URL | https://chromewebstore.google.com/detail/powerschool-grade-calcula/omoffjbdckolacanfbappkfdaacmbjnd |
简介 | An extension that will automatically calculate your grades for powerschool and print them on the page next to your letter grade. |
文件大小 | 409 KB |
安装次数 | 11,098 |
当前版本 | 1.7.1 |
更新时间 | 2023-06-15 |
上架时间 | 2017-02-01 |
评分 | 3.50/5 共16次评分 |
开发者 | kyleai |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PowerSchool Grade Calculator", "short_name": "Show Grade", "version": "1.7.1", "author": "Kyle Into", "description": "An extension that will automatically calculate your grades for powerschool and print them on the page next to your letter grade. ", "icons": { "128": "image.png" }, "page_action": { "default_title": "Get PowerSchool Grades", "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", "getGrade.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", "getGPA.js" ] }, { "matches": [ "https:\/\/*\/*" ], "include_globs": [ "*powerschool.*", "*ps.*", "*termgrades*", "portal", "k12" ], "exclude_globs": [ "*scores*", "*attendance*", "*requestform*", "*schoolinformation*", "*home*" ], "js": [ "jquery-2.2.2.min.js", "getPastGPA.js" ] } ], "web_accessible_resources": [ "jquery-2.2.2.min.js", "getGPA.js", "getGrade.js" ], "options_page": "options.html", "options_ui": { "chrome_style": true, "page": "options.html" } } |