Studentweb - GPA Injector
Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities!
Studentweb - GPA Injectorคืออะไร?
Studentweb - GPA Injector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Henrik Høiness และคุณลักษณะหลักของมันคือ "Calculates mean grade and plots grade distribution on studweb by Feide for norwegian universities!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Studentweb - GPA Injector
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 } |