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 |
| 官方網址 | 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\/"
]
} | |