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 |
| Eメール | [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": []
} | |