Pinnacle Grade Calculator
An extension to see how an assignment will affect your class grade.
什么是Pinnacle Grade Calculator?
Pinnacle Grade Calculator是由William Chiang & Salvador Aleguas开发的Chrome扩展程序,该扩展的主要功能是“An extension to see how an assignment will affect your class grade.”。
扩展截图
下载Pinnacle Grade Calculator扩展crx文件
下载Pinnacle Grade Calculator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Ever wanted to see how a grade would impact your average in a class? Well that's simple: if it does not use point systems, add up all the points you earned plus the new grade's achieved points then divide by the...
Oh wait, that might take a while.
That's why this extension was made. You can add fake grades and your class average will automatically update based on the new grade. It even works on categories too!
Note: We are not liable for any damages that may result from the use of our product. Calculations may not be a hundred percent accurate.
Update 1.0.4: Fixed Functionality 扩展基本信息
| 名称 | |
| ID | ajmebljhmdndihimeodajeiicccpdfei |
| 官方URL | https://chromewebstore.google.com/detail/pinnacle-grade-calculator/ajmebljhmdndihimeodajeiicccpdfei |
| 简介 | An extension to see how an assignment will affect your class grade. |
| 文件大小 | 88.6 KB |
| 安装次数 | 4,237 |
| 当前版本 | 1.0.4 |
| 更新时间 | 2020-12-05 |
| 上架时间 | 2019-08-31 |
| 评分 | 3.70/5 共10次评分 |
| 开发者 | William Chiang & Salvador Aleguas |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/WillBillChiang/Pinnacle-Grade-Calculator |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Pinnacle Grade Calculator",
"version": "1.0.4",
"description": "An extension to see how an assignment will affect your class grade.",
"homepage_url": "https:\/\/github.com\/WillBillChiang\/Pinnacle-Grade-Calculator",
"content_scripts": [
{
"matches": [
"*:\/\/gb.browardschools.com\/Pinnacle\/Gradebook\/InternetViewer\/StudentAssignments*"
],
"js": [
"assets\/js\/calculate.js"
],
"css": [
"assets\/css\/style.css"
]
}
],
"browser_action": {
"default_icon": "assets\/image\/book.png"
},
"icons": {
"16": "assets\/image\/book.png",
"48": "assets\/image\/book2.png",
"128": "assets\/image\/book3.png"
},
"background": {
"scripts": [
"assets\/js\/background.js"
]
},
"permissions": []
} | |