Auto-Register

Automate your course registration process

Cos'è Auto-Register?

Auto-Register è un'estensione di Chrome sviluppata da Ajmal Ali, e la sua funzione principale è "Automate your course registration process".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Auto-Register

Scarica i file di estensione Auto-Register in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Auto-Register automates the course registration process for KFUPM students by automatically filling and submitting your desired CRNs.

Update v3.6.4 - v3.6.5
- Extension now works for the old registration system also.

Update v3.6.3
- Updated auto-submit function.

Update v3.6.2
- Partial fix for auto-fill/auto-submit for new registration system.

Update v3.6.1
- Since the registration page is changed, here is a temporary update for registration. 
The extension may or may not work because it is not yet tested on the new registration page.

Update v3.6:
- Fix for error in autofill.

Update v3.5:
- Updated UI/UX.
- Updated HOW TO USE
- General optimizations.

Update v3.0:
- Added ability to resubmit submissions.
- Added Tips & Tricks.
- Minor optimizations.

Send your feedback here: https://forms.gle/CwoaBLHXn6BjzoiY8                    

Informazioni di Base sull'Estensione

Nome Auto-Register Auto-Register
ID cdnggghhipolhgompbcoofhkebpogdoe
URL Ufficiale https://chromewebstore.google.com/detail/auto-register/cdnggghhipolhgompbcoofhkebpogdoe
Descrizione Automate your course registration process
Dimensione del File 808 KB
Conteggio Installazioni 5,137
Versione Corrente 3.6.5
Ultimo Aggiornamento 2019-11-15
Data di Pubblicazione 2019-11-15
Valutazione 4.81/5 Totale 21 Valutazioni
Sviluppatore Ajmal Ali
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ajmalali/auto-register-chrome
URL della Pagina di Aiuto https://forms.gle/CwoaBLHXn6BjzoiY8
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto-Register",
    "version": "3.6.5",
    "description": "Automate your course registration process",
    "icons": {
        "128": "icons\/ks_128.png",
        "48": "icons\/ks_48.png",
        "32": "icons\/ks_32.png",
        "16": "icons\/ks_16.png"
    },
    "browser_action": {
        "default_icon": "icons\/ks_16.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/banner9-registration.kfupm.edu.sa\/StudentRegistrationSsb\/ssb\/classRegistration\/classRegistration"
            ],
            "js": [
                "js\/autofill.js"
            ]
        },
        {
            "matches": [
                "https:\/\/banner9-registration.kfupm.edu.sa\/StudentRegistrationSsb\/ssb\/term\/termSelection?mode=registration"
            ],
            "js": [
                "js\/termSelection.js"
            ]
        },
        {
            "matches": [
                "http:\/\/ssbweb.kfupm.edu.sa\/PROD8\/bwckcoms.P_Regs",
                "https:\/\/banner8-ssb.kfupm.edu.sa\/PROD9\/bwskfreg.P_AltPin\/*"
            ],
            "js": [
                "js\/autofill-old.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/banner9-registration.kfupm.edu.sa\/*",
        "http:\/\/ssbweb.kfupm.edu.sa\/PROD8\/bwckcoms.P_Regs",
        "https:\/\/banner8-ssb.kfupm.edu.sa\/PROD9\/bwskfreg.P_AltPin",
        "storage",
        "tabs"
    ]
}