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!”。
擴展截圖
下載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 |
ID | pmepliimgcibaomafojdmdignjffeheg |
官方網址 | 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 } |