Studentweb - GPA Injector

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

Studentweb - GPA Injector क्या है?

Studentweb - GPA Injector Henrik Høiness द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Studentweb - GPA Injector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}