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"입니다.

확장 프로그램 스크린샷

screenshot

McGill Class Averages Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}