McGill Class Averages Downloader
A tool to download class averages for crowd-sourcing purposes
What is McGill Class Averages Downloader?
McGill Class Averages Downloader is a Chrome extension developed by kozirisdev, and its main feature is "A tool to download class averages for crowd-sourcing purposes".
Extension Screenshots
Download McGill Class Averages Downloader Extension CRX File
Download McGill Class Averages Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | McGill Class Averages Downloader |
ID | bfknipiahpbjdegcdbikpgncghfoefkb |
Official URL | https://chromewebstore.google.com/detail/mcgill-class-averages-dow/bfknipiahpbjdegcdbikpgncghfoefkb |
Description | A tool to download class averages for crowd-sourcing purposes |
File Size | 10.22 KB |
Installation Count | 317 |
Current Version | 0.5 |
Last Updated | 2017-10-01 |
Publish Date | 2017-09-30 |
Rating | 5.00/5 Total 2 Ratings |
Developer | kozirisdev |
[email protected] | |
Payment Type | free |
Extension Website | https://demetrios-koziris.github.io/McGillClassAveragesDownloader/ |
Supported Languages | 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" ] } ] } |