Studentweb - GPA Injector
Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities!
Was ist Studentweb - GPA Injector?
Studentweb - GPA Injector ist eine Chrome-Erweiterung, die von Henrik Høiness entwickelt wurde, und ihr Hauptmerkmal ist "Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities!".
Erweiterungsscreenshots
Studentweb - GPA Injector-Erweiterungs-CRX-Datei herunterladen
Laden Sie Studentweb - GPA Injector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Reads results table from studweb by FEIDE and calculates mean grade and plots grade distributions. Can be used by students at NTNU and other norwegian universities. Extension icon is colorized when active. The grade statistics are hidden by default, and is shown by pressing toggle-button on Results-page on Studentweb.
Grundlegende Informationen zur Erweiterung
Name | Studentweb - GPA Injector |
ID | pmepliimgcibaomafojdmdignjffeheg |
Offizielle URL | https://chromewebstore.google.com/detail/studentweb-gpa-injector/pmepliimgcibaomafojdmdignjffeheg |
Beschreibung | Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities! |
Dateigröße | 424 KB |
Installationsanzahl | 38 |
Aktuelle Version | 2.3 |
Letztes Update | 2021-06-02 |
Veröffentlichungsdatum | 2020-11-01 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Henrik Høiness |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | no |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Studentweb - GPA Injector", "version": "2.3", "description": "Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities!", "permissions": [ "tabs", "*:\/\/fsweb.no\/studentweb\/resultater.jsf" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/fsweb.no\/studentweb\/resultater.jsf*" ], "js": [ "thirdParty\/jquery.min.js", "thirdParty\/canvasjs.min.js", "gpa_injector.js" ], "run_at": "document_end" } ], "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/gray\/icon-16.png", "32": "icons\/gray\/icon-32.png", "48": "icons\/gray\/icon-48.png", "128": "icons\/gray\/icon-128.png" } }, "icons": { "16": "icons\/gray\/icon-16.png", "32": "icons\/gray\/icon-32.png", "48": "icons\/gray\/icon-48.png", "128": "icons\/gray\/icon-128.png" }, "manifest_version": 2 } |