GradeMyGold
Easily calculate your predicted GPA within GOLD.
什么是GradeMyGold?
GradeMyGold是由Casey Barbello开发的Chrome扩展程序,该扩展的主要功能是“Easily calculate your predicted GPA within GOLD.”。
扩展截图
下载GradeMyGold扩展crx文件
下载GradeMyGold扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
GradeMyGold makes predicting your future GPA easy by adding a GPA calculator to UCSB's GOLD website. Simply go to the "Grades" tab on GOLD and select "All Quarters." A calculator will appear at the bottom of the page next to your current quarter.
GradeMyGold correctly calculates your GPA, even if you are retaking a course. If you would like to omit a course grade, set its corresponding drop down to "P/NP" and it will be excluded from the calculation.
All calculations are performed locally on your machine. Your data is not altered and nothing is reported to me. 扩展基本信息
| 名称 | |
| ID | jneakpjhcnajlhemfopfpacikagpolkn |
| 官方URL | https://chromewebstore.google.com/detail/grademygold/jneakpjhcnajlhemfopfpacikagpolkn |
| 简介 | Easily calculate your predicted GPA within GOLD. |
| 文件大小 | 9.14 KB |
| 安装次数 | 149 |
| 当前版本 | 1.6 |
| 更新时间 | 2018-04-18 |
| 上架时间 | 2018-04-17 |
| 评分 | 4.57/5 共7次评分 |
| 开发者 | Casey Barbello |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "GradeMyGold",
"version": "1.6",
"author": "Casey Barbello",
"description": "Easily calculate your predicted GPA within GOLD.",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"page_action": {
"default_icon": "icon.png"
},
"permissions": [
"tabs"
],
"background": {
"scripts": [
"eventPage.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/my.sa.ucsb.edu\/gold\/StudentGrades.aspx"
],
"css": [
"sheet.css"
],
"js": [
"main.js"
]
}
]
} | |