Tenafly GPA Calculator
This thing calculates your gpa.
什么是Tenafly GPA Calculator?
Tenafly GPA Calculator是由pienote开发的Chrome扩展程序,该扩展的主要功能是“This thing calculates your gpa.”。
扩展截图
下载Tenafly GPA Calculator扩展crx文件
下载Tenafly GPA Calculator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Calculate your gpa with one button,
uses the Tenafly Grade Point Average scale,
only tested with tenafly.k12.nj.us. 扩展基本信息
| 名称 | |
| ID | hhibfahkdabfjmieobhafkglmleommja |
| 官方URL | https://chromewebstore.google.com/detail/tenafly-gpa-calculator/hhibfahkdabfjmieobhafkglmleommja |
| 简介 | This thing calculates your gpa. |
| 文件大小 | 43.37 KB |
| 安装次数 | 19 |
| 当前版本 | 13.37 |
| 更新时间 | 2016-12-19 |
| 上架时间 | 2016-12-18 |
| 评分 | 4.67/5 共3次评分 |
| 开发者 | pienote |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tenafly GPA Calculator",
"description": "This thing calculates your gpa.",
"version": "13.37",
"content_scripts": [
{
"matches": [
"https:\/\/parents.tenafly.k12.nj.us\/*"
],
"js": [
"jquery.js",
"background.js"
]
}
],
"background": {
"scripts": [
"jquery.js",
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "icon128.png",
"default_popup": "popup.html"
},
"icons": {
"128": "icon128.png",
"16": "icon16.png",
"48": "icon48.png"
},
"permissions": [
"activeTab",
"https:\/\/ajax.googleapis.com\/"
]
} | |