Minerva Autoregistration

A Chrome Extension for Minerva Autoregistration functionality.

Minerva Autoregistration란 무엇입니까?

Minerva Autoregistration은(는) kozirisdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome Extension for Minerva Autoregistration functionality."입니다.

확장 프로그램 스크린샷

screenshot

Minerva Autoregistration 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        A tool that checks Minerva for course seat availability on a timed interval and auto-registers for a course if it isn't full. 

Note: Does not work for courses that have wait lists.

License:
This Chrome extension is free and open source. 
The source code can be found on github and is provided under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
The GNU General Public License can be found at https://www.gnu.org/licenses/gpl-3.0.html.

Users are solely responsible for deciding if MinervaAutoregistration is compliant with McGill's Policy on the Responsible Use of IT Resources.
McGill and Minerva have no affiliation with this software.                    

확장 프로그램 기본 정보

이름 Minerva Autoregistration Minerva Autoregistration
ID ihcbooikjllhhpjkihabbfcccbhgeham
공식 URL https://chromewebstore.google.com/detail/minerva-autoregistration/ihcbooikjllhhpjkihabbfcccbhgeham
설명 A Chrome Extension for Minerva Autoregistration functionality.
파일 크기 46.71 KB
설치 횟수 208
현재 버전 1.0.11
최근 업데이트 2019-03-13
출시 날짜 2019-03-13
평점 5.00/5 총 1 개의 평점
개발자 kozirisdev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://demetrios-koziris.github.io/MinervaAutoregistration
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Minerva Autoregistration",
    "author": "kozirisdev",
    "manifest_version": 2,
    "version": "1.0.11",
    "description": "A Chrome Extension for Minerva Autoregistration functionality.",
    "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\/mar-128.png",
            "128": "icons\/mar-128.png"
        }
    },
    "icons": {
        "128": "icons\/mar-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/horizon.mcgill.ca\/*",
                "*:\/\/demetrios-koziris.github.io\/*"
            ],
            "js": [
                "lib\/jquery-1.11.2.min.js",
                "js\/autoregistration.js"
            ]
        }
    ]
}