AutoCRN

Helps you a little bit when registering courses @ CityU

Was ist AutoCRN?

AutoCRN ist eine Chrome-Erweiterung, die von lhc70000 entwickelt wurde, und ihr Hauptmerkmal ist "Helps you a little bit when registering courses @ CityU".

Erweiterungsscreenshots

screenshot

AutoCRN-Erweiterungs-CRX-Datei herunterladen

Laden Sie AutoCRN-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This is an open source project. Contribution is welcomed at
https://github.com/lhc70000/AutoCRN_Chrome.


Features:

- Fill in CRNs
- Submit CRNs automatically
- Refresh every 5 minutes to avoid session timeout (idea from Shawn)
- Auto refresh at an exact time
- Retry when page load time > 5s (not sure whether it works)


IMPORTANT:

- Please read and understand the regulations and restrictions of ARRO, and consider whether it's appropriate before you actually use it.
- The project is experimental and unstable. The developer is not responsible for any possible consequence.                    

Grundlegende Informationen zur Erweiterung

Name AutoCRN AutoCRN
ID fnamipcehfmjomamkpgibdidlnlaobgf
Offizielle URL https://chromewebstore.google.com/detail/autocrn/fnamipcehfmjomamkpgibdidlnlaobgf
Beschreibung Helps you a little bit when registering courses @ CityU
Dateigröße 286 KB
Installationsanzahl 920
Aktuelle Version 1.0.1
Letztes Update 2016-08-15
Veröffentlichungsdatum 2016-08-15
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler lhc70000
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoCRN",
    "description": "Helps you a little bit when registering courses @ CityU",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "CityU Course Registration Helper"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/banweb.cityu.edu.hk\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/banweb.cityu.edu.hk\/*"
            ],
            "js": [
                "add_crn.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}