Studentweb - GPA Injector

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

Τι είναι το Studentweb - GPA Injector;

Το Studentweb - GPA Injector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Henrik Høiness, και η κύρια λειτουργία του είναι "Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities!".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Studentweb - GPA Injector

Λήψη αρχείων επέκτασης Studentweb - GPA Injector σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Studentweb - GPA Injector Studentweb - GPA Injector
ID pmepliimgcibaomafojdmdignjffeheg
Επίσημο URL https://chromewebstore.google.com/detail/studentweb-gpa-injector/pmepliimgcibaomafojdmdignjffeheg
Περιγραφή Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities!
Μέγεθος Αρχείου 424 KB
Αριθμός Εγκαταστάσεων 38
Τρέχουσα Έκδοση 2.3
Τελευταία Ενημέρωση 2021-06-02
Ημερομηνία Δημοσίευσης 2020-11-01
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Henrik Høiness
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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
}