GradeMyGold
Easily calculate your predicted GPA within GOLD.
Cos'è GradeMyGold?
GradeMyGold è un'estensione di Chrome sviluppata da Casey Barbello, e la sua funzione principale è "Easily calculate your predicted GPA within GOLD.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GradeMyGold
Scarica i file di estensione GradeMyGold in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | GradeMyGold |
ID | jneakpjhcnajlhemfopfpacikagpolkn |
URL Ufficiale | https://chromewebstore.google.com/detail/grademygold/jneakpjhcnajlhemfopfpacikagpolkn |
Descrizione | Easily calculate your predicted GPA within GOLD. |
Dimensione del File | 9.14 KB |
Conteggio Installazioni | 149 |
Versione Corrente | 1.6 |
Ultimo Aggiornamento | 2018-04-18 |
Data di Pubblicazione | 2018-04-17 |
Valutazione | 4.57/5 Totale 7 Valutazioni |
Sviluppatore | Casey Barbello |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |