Catholic Central GPA Calculator
Automatically loads your GPA on MyCC's progress page, as well as some other useful features
什么是Catholic Central GPA Calculator?
Catholic Central GPA Calculator是由BD开发的Chrome扩展程序,该扩展的主要功能是“Automatically loads your GPA on MyCC's progress page, as well as some other useful features”。
扩展截图
下载Catholic Central GPA Calculator扩展crx文件
下载Catholic Central GPA Calculator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
• Auto updates for any new versions • Current, accurate GPA according to CC's grading standard • Ability to view weighted and unweighted grades • Calculate your class grade for upcoming assignment • Calculate your semester grades based on your exam grades • Calculate the minimum exam grade needed to accomplish a semester grade --- (Credits to: Bagel03)
扩展基本信息
名称 | Catholic Central GPA Calculator |
ID | akbakffdecfdahaciiiniiaopllhmppj |
官方URL | https://chromewebstore.google.com/detail/catholic-central-gpa-calc/akbakffdecfdahaciiiniiaopllhmppj |
简介 | Automatically loads your GPA on MyCC's progress page, as well as some other useful features |
文件大小 | 3.59 KB |
安装次数 | 107 |
当前版本 | 2.0.0 |
更新时间 | 2023-12-17 |
上架时间 | 2023-12-17 |
评分 | 5.00/5 共2次评分 |
开发者 | BD |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "$schema": "https:\/\/json.schemastore.org\/chrome-manifest", "manifest_version": 3, "name": "Catholic Central GPA Calculator", "version": "2.0.0", "description": "Automatically loads your GPA on MyCC's progress page, as well as some other useful features", "content_scripts": [ { "matches": [ "https:\/\/*.myschoolapp.com\/*" ], "js": [ "index.js" ] } ], "web_accessible_resources": [ { "resources": [ "\/built\/*" ], "matches": [ "https:\/\/*.myschoolapp.com\/*" ] } ], "host_permissions": [ "https:\/\/*.myschoolapp.com\/*" ], "permissions": [ "storage" ], "externally_connectable": { "matches": [ "https:\/\/*.myschoolapp.com\/*" ] } } |