GradeMyGold
Easily calculate your predicted GPA within GOLD.
Vad är GradeMyGold?
GradeMyGold är en Chrome-tillägg utvecklad av Casey Barbello, och dess huvudfunktion är "Easily calculate your predicted GPA within GOLD.".
Tilläggsskärmbilder
Ladda ner GradeMyGold-förlängningens CRX-fil
Ladda ner GradeMyGold-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | GradeMyGold |
ID | jneakpjhcnajlhemfopfpacikagpolkn |
Officiell webbadress | https://chromewebstore.google.com/detail/grademygold/jneakpjhcnajlhemfopfpacikagpolkn |
Beskrivning | Easily calculate your predicted GPA within GOLD. |
Filstorlek | 9.14 KB |
Antal Installationer | 149 |
Aktuell Version | 1.6 |
Senast Uppdaterad | 2018-04-18 |
Publiceringsdatum | 2018-04-17 |
Betyg | 4.57/5 Totalt 7 Betyg |
Utvecklare | Casey Barbello |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |