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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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 } |