McGill Class Averages Downloader
A tool to download class averages for crowd-sourcing purposes
ما هو McGill Class Averages Downloader؟
McGill Class Averages Downloader هو إضافة Chrome تم تطويرها بواسطة kozirisdev، والميزة الرئيسية لها هي "A tool to download class averages for crowd-sourcing purposes".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة McGill Class Averages Downloader
قم بتنزيل ملفات الامتداد McGill Class Averages Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
البريد الإلكتروني | [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" ] } ] } |