GradeMyGold
Easily calculate your predicted GPA within GOLD.
Was ist GradeMyGold?
GradeMyGold ist eine Chrome-Erweiterung, die von Casey Barbello entwickelt wurde, und ihr Hauptmerkmal ist "Easily calculate your predicted GPA within GOLD.".
Erweiterungsscreenshots
GradeMyGold-Erweiterungs-CRX-Datei herunterladen
Laden Sie GradeMyGold-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | GradeMyGold |
ID | jneakpjhcnajlhemfopfpacikagpolkn |
Offizielle URL | https://chromewebstore.google.com/detail/grademygold/jneakpjhcnajlhemfopfpacikagpolkn |
Beschreibung | Easily calculate your predicted GPA within GOLD. |
Dateigröße | 9.14 KB |
Installationsanzahl | 149 |
Aktuelle Version | 1.6 |
Letztes Update | 2018-04-18 |
Veröffentlichungsdatum | 2018-04-17 |
Bewertung | 4.57/5 Insgesamt 7 Bewertungen |
Entwickler | Casey Barbello |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |