McGill Class Averages Downloader

A tool to download class averages for crowd-sourcing purposes

McGill Class Averages Downloader क्या है?

McGill Class Averages Downloader kozirisdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A tool to download class averages for crowd-sourcing purposes"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में McGill Class Averages Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
            ]
        }
    ]
}