McGill Class Averages Downloader
A tool to download class averages for crowd-sourcing purposes
McGill Class Averages Downloaderとは何ですか?
McGill Class Averages Downloaderはkozirisdevによって開発されたChromeの拡張機能で、その主な機能は「A tool to download class averages for crowd-sourcing purposes」です。
拡張機能のスクリーンショット
McGill Class Averages Downloader拡張機能のCRXファイルをダウンロード
McGill Class Averages Downloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | McGill Class Averages Downloader |
ID | bfknipiahpbjdegcdbikpgncghfoefkb |
公式URL | https://chromewebstore.google.com/detail/mcgill-class-averages-dow/bfknipiahpbjdegcdbikpgncghfoefkb |
説明 | A tool to download class averages for crowd-sourcing purposes |
ファイルサイズ | 10.22 KB |
インストール数 | 317 |
現在のバージョン | 0.5 |
最終更新日 | 2017-10-01 |
公開日 | 2017-09-30 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | kozirisdev |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://demetrios-koziris.github.io/McGillClassAveragesDownloader/ |
対応言語 | 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" ] } ] } |