Sisu grade distribution
An extension for showing the grade distribution for courses in Sisu
Sisu grade distribution là gì?
Sisu grade distribution là một tiện ích mở rộng Chrome được phát triển bởi aapolaakkio, và tính năng chính của nó là "An extension for showing the grade distribution for courses in Sisu".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Sisu grade distribution
Tải xuống các tệp mở rộng Sisu grade distribution dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Sisu previously showed the grade distribution for the course you were viewing. Currently the feature has been removed but the distribution data is still available. This Chrome extension adds the grade distribution back to where it was before and also adds couple additional features. Grade distributions are found under My profile -> Completed credits -> select a course and scroll down to public grade distribution. Features: - View grade distribution of your chosen course. - Download grade distribution data as CSV your own uses. - Download grade distribution as a PNG image.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Sisu grade distribution |
ID | jicnbkapmcgpbnegmkcgniabdnjfpaob |
URL Chính Thức | https://chromewebstore.google.com/detail/sisu-grade-distribution/jicnbkapmcgpbnegmkcgniabdnjfpaob |
Mô tả | An extension for showing the grade distribution for courses in Sisu |
Kích Thước Tệp | 155 KB |
Số Lần Cài Đặt | 101 |
Phiên Bản Hiện Tại | 1.4.3 |
Cập Nhật Lần Cuối | 2023-12-05 |
Ngày Phát Hành | 2023-01-26 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | aapolaakkio |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ApsiV11/sisu-grade-distribution |
Ngôn Ngữ Được Hỗ Trợ | en,fi,sv |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.4.3", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "fi", "content_scripts": [ { "matches": [ "https:\/\/sisu.aalto.fi\/*", "https:\/\/sisu.helsinki.fi\/*", "https:\/\/sisu.hanken.fi\/*", "https:\/\/sisu.jyu.fi\/*", "https:\/\/sisu.lut.fi\/*", "https:\/\/sis-tuni.funidata.fi\/*", "https:\/\/sisu.tuni.fi\/*", "https:\/\/sisu.arcada.fi\/*" ], "js": [ "scripts\/injectXHRMod.js" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "scripting" ], "host_permissions": [ "https:\/\/sisu.aalto.fi\/*", "https:\/\/sisu.helsinki.fi\/*", "https:\/\/sisu.hanken.fi\/*", "https:\/\/sisu.jyu.fi\/*", "https:\/\/sisu.lut.fi\/*", "https:\/\/sis-tuni.funidata.fi\/*", "https:\/\/sisu.tuni.fi\/*", "https:\/\/sisu.arcada.fi\/*" ], "web_accessible_resources": [ { "resources": [ "scripts\/injectXHRMod.js", "scripts\/interceptXHR.js" ], "matches": [ "https:\/\/sisu.aalto.fi\/*", "https:\/\/sisu.helsinki.fi\/*", "https:\/\/sisu.hanken.fi\/*", "https:\/\/sisu.jyu.fi\/*", "https:\/\/sisu.lut.fi\/*", "https:\/\/sis-tuni.funidata.fi\/*", "https:\/\/sisu.tuni.fi\/*", "https:\/\/sisu.arcada.fi\/*" ] } ] } |