MadGPA
Automatically loads the previous semester's average GPA in course enroll.
Cos'è MadGPA?
MadGPA è un'estensione di Chrome sviluppata da Prath, e la sua funzione principale è "Automatically loads the previous semester's average GPA in course enroll.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione MadGPA
Scarica i file di estensione MadGPA 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
Helps you select the best & easiest courses to enroll in at the University of Wisconsin - Madison. Have you ever tried to find the easiest course offering of a certain degree requirement? This extension solves that problem! By overlaying previous semesters average GPA in course enroll, this extension removes the pain of finding a course and then checking it against a grade distribution site.
Informazioni di Base sull'Estensione
Nome | MadGPA |
ID | ngglfcpeciojeakbdenajcljcinejjpa |
URL Ufficiale | https://chromewebstore.google.com/detail/madgpa/ngglfcpeciojeakbdenajcljcinejjpa |
Descrizione | Automatically loads the previous semester's average GPA in course enroll. |
Dimensione del File | 33.26 KB |
Conteggio Installazioni | 285 |
Versione Corrente | 3.00 |
Ultimo Aggiornamento | 2023-02-03 |
Data di Pubblicazione | 2023-01-31 |
Valutazione | 5.00/5 Totale 7 Valutazioni |
Sviluppatore | Prath |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://pite.vercel.app/#projects |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "MadGPA", "description": "Automatically loads the previous semester's average GPA in course enroll.", "version": "3.00", "icons": { "32": "icons\/32.png", "128": "icons\/128.png" }, "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "host_permissions": [ "https:\/\/github.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.enroll.wisc.edu\/*", "https:\/\/enroll.wisc.edu\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ] } |