Studentweb - GPA Injector
Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities!
Co je Studentweb - GPA Injector?
Studentweb - GPA Injector je rozšíření Chrome vyvinuté Henrik Høiness, a jeho hlavní funkcí je „Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities!“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Studentweb - GPA Injector
Stáhněte si soubory rozšíření Studentweb - GPA Injector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Studentweb - GPA Injector |
ID | pmepliimgcibaomafojdmdignjffeheg |
Oficiální URL | https://chromewebstore.google.com/detail/studentweb-gpa-injector/pmepliimgcibaomafojdmdignjffeheg |
Popis | Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities! |
Velikost souboru | 424 KB |
Počet instalací | 38 |
Aktuální Verze | 2.3 |
Poslední Aktualizace | 2021-06-02 |
Datum Vydání | 2020-11-01 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | Henrik Høiness |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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 } |