GradeMyGold
Easily calculate your predicted GPA within GOLD.
Wat is GradeMyGold?
GradeMyGold is een Chrome-extensie ontwikkeld door Casey Barbello, en de belangrijkste functie is "Easily calculate your predicted GPA within GOLD.".
Extensie Screenshots
Download het CRX-bestand van de extensie GradeMyGold
Download GradeMyGold-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | GradeMyGold |
ID | jneakpjhcnajlhemfopfpacikagpolkn |
Officiële URL | https://chromewebstore.google.com/detail/grademygold/jneakpjhcnajlhemfopfpacikagpolkn |
Beschrijving | Easily calculate your predicted GPA within GOLD. |
Bestandsgrootte | 9.14 KB |
Aantal Installaties | 149 |
Huidige Versie | 1.6 |
Laatst Bijgewerkt | 2018-04-18 |
Publicatiedatum | 2018-04-17 |
Beoordeling | 4.57/5 Totaal 7 Beoordelingen |
Ontwikkelaar | Casey Barbello |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |