Studentweb - GPA Injector
Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities!
Qu'est-ce que Studentweb - GPA Injector ?
Studentweb - GPA Injector est une extension Chrome développée par Henrik Høiness, et sa fonction principale est "Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Studentweb - GPA Injector
Téléchargez les fichiers d'extension Studentweb - GPA Injector 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
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.
Informations de Base sur l'Extension
Nom | Studentweb - GPA Injector |
ID | pmepliimgcibaomafojdmdignjffeheg |
URL Officiel | https://chromewebstore.google.com/detail/studentweb-gpa-injector/pmepliimgcibaomafojdmdignjffeheg |
Description | Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities! |
Taille du Fichier | 424 KB |
Nombre d'Installations | 38 |
Version Actuelle | 2.3 |
Dernière Mise à Jour | 2021-06-02 |
Date de Publication | 2020-11-01 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Henrik Høiness |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |