GradeMyGold
Easily calculate your predicted GPA within GOLD.
O que é GradeMyGold?
GradeMyGold é uma extensão do Chrome desenvolvida por Casey Barbello, e sua principal característica é "Easily calculate your predicted GPA within GOLD.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GradeMyGold
Baixe arquivos de extensão GradeMyGold no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | GradeMyGold |
ID | jneakpjhcnajlhemfopfpacikagpolkn |
URL Oficial | https://chromewebstore.google.com/detail/grademygold/jneakpjhcnajlhemfopfpacikagpolkn |
Descrição | Easily calculate your predicted GPA within GOLD. |
Tamanho do Arquivo | 9.14 KB |
Contagem de Instalações | 149 |
Versão Atual | 1.6 |
Última Atualização | 2018-04-18 |
Data de Publicação | 2018-04-17 |
Classificação | 4.57/5 Total de 7 Avaliações |
Desenvolvedor | Casey Barbello |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |