Minerva Autoregistration

A Chrome Extension for Minerva Autoregistration functionality.

Minerva Autoregistration क्या है?

Minerva Autoregistration kozirisdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome Extension for Minerva Autoregistration functionality."।

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

screenshot

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

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