GradeMyGold
Easily calculate your predicted GPA within GOLD.
Qu'est-ce que GradeMyGold ?
GradeMyGold est une extension Chrome développée par Casey Barbello, et sa fonction principale est "Easily calculate your predicted GPA within GOLD.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GradeMyGold
Téléchargez les fichiers d'extension GradeMyGold au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | GradeMyGold |
ID | jneakpjhcnajlhemfopfpacikagpolkn |
URL Officiel | https://chromewebstore.google.com/detail/grademygold/jneakpjhcnajlhemfopfpacikagpolkn |
Description | Easily calculate your predicted GPA within GOLD. |
Taille du Fichier | 9.14 KB |
Nombre d'Installations | 149 |
Version Actuelle | 1.6 |
Dernière Mise à Jour | 2018-04-18 |
Date de Publication | 2018-04-17 |
Évaluation | 4.57/5 Total 7 Évaluations |
Développeur | Casey Barbello |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |