GradeMyGold
Easily calculate your predicted GPA within GOLD.
Co to jest GradeMyGold?
GradeMyGold to rozszerzenie Chrome opracowane przez Casey Barbello, a jego główną funkcją jest „Easily calculate your predicted GPA within GOLD.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GradeMyGold
Pobierz pliki rozszerzeń GradeMyGold w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | jneakpjhcnajlhemfopfpacikagpolkn |
| Oficjalny URL | https://chromewebstore.google.com/detail/grademygold/jneakpjhcnajlhemfopfpacikagpolkn |
| Opis | Easily calculate your predicted GPA within GOLD. |
| Rozmiar pliku | 9.14 KB |
| Liczba instalacji | 149 |
| Aktualna Wersja | 1.6 |
| Ostatnia Aktualizacja | 2018-04-18 |
| Data Publikacji | 2018-04-17 |
| Ocena | 4.57/5 Łącznie 7 Oceny |
| Deweloper | Casey Barbello |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
]
}
]
} | |