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文件

下載Minerva Autoregistration擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}