McGill Class Averages Downloader
A tool to download class averages for crowd-sourcing purposes
McGill Class Averages Downloader là gì?
McGill Class Averages Downloader là một tiện ích mở rộng Chrome được phát triển bởi kozirisdev, và tính năng chính của nó là "A tool to download class averages for crowd-sourcing purposes".
Ả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 McGill Class Averages Downloader
Tải xuống các tệp mở rộng McGill Class Averages Downloader 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
A Chrome Extension helping McGill students crowd-source a class average database. This extension allows McGill students to download the class averages from their transcript as a spreadsheet instead of copying them manually.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | McGill Class Averages Downloader |
ID | bfknipiahpbjdegcdbikpgncghfoefkb |
URL Chính Thức | https://chromewebstore.google.com/detail/mcgill-class-averages-dow/bfknipiahpbjdegcdbikpgncghfoefkb |
Mô tả | A tool to download class averages for crowd-sourcing purposes |
Kích Thước Tệp | 10.22 KB |
Số Lần Cài Đặt | 317 |
Phiên Bản Hiện Tại | 0.5 |
Cập Nhật Lần Cuối | 2017-10-01 |
Ngày Phát Hành | 2017-09-30 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | kozirisdev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://demetrios-koziris.github.io/McGillClassAveragesDownloader/ |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "McGill Class Averages Downloader", "author": "kozirisdev", "manifest_version": 2, "version": "0.5", "description": "A tool to download class averages for crowd-sourcing purposes", "permissions": [ "declarativeContent", "*:\/\/horizon.mcgill.ca\/*", "*:\/\/demetrios-koziris.github.io\/*" ], "background": { "scripts": [ "js\/backgroundHTTP.js", "js\/background.js" ], "persistent": false }, "browser_action": { "default_icon": { "38": "icons\/mcad-128.png", "128": "icons\/mcad-128.png" } }, "icons": { "128": "icons\/mcad-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/horizon.mcgill.ca\/*", "*:\/\/demetrios-koziris.github.io\/*" ], "js": [ "js\/averageGPAsDownloader.js" ] } ] } |