Studentweb - GPA Injector

Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities!

Cos'è Studentweb - GPA Injector?

Studentweb - GPA Injector è un'estensione di Chrome sviluppata da Henrik Høiness, e la sua funzione principale è "Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Studentweb - GPA Injector

Scarica i file di estensione Studentweb - GPA Injector 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Studentweb - GPA Injector Studentweb - GPA Injector
ID pmepliimgcibaomafojdmdignjffeheg
URL Ufficiale https://chromewebstore.google.com/detail/studentweb-gpa-injector/pmepliimgcibaomafojdmdignjffeheg
Descrizione Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities!
Dimensione del File 424 KB
Conteggio Installazioni 38
Versione Corrente 2.3
Ultimo Aggiornamento 2021-06-02
Data di Pubblicazione 2020-11-01
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Henrik Høiness
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
}