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によって開発されたChromeの拡張機能で、その主な機能は「Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities!」です。

拡張機能のスクリーンショット

screenshot

Studentweb - GPA Injector拡張機能のCRXファイルをダウンロード

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
Eメール [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
}