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
电子邮箱 [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
}