Auto-Register

Automate your course registration process

Qu'est-ce que Auto-Register ?

Auto-Register est une extension Chrome développée par Ajmal Ali, et sa fonction principale est "Automate your course registration process".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Auto-Register

Téléchargez les fichiers d'extension Auto-Register au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Auto-Register Auto-Register
ID cdnggghhipolhgompbcoofhkebpogdoe
URL Officiel https://chromewebstore.google.com/detail/auto-register/cdnggghhipolhgompbcoofhkebpogdoe
Description Automate your course registration process
Taille du Fichier 808 KB
Nombre d'Installations 5,137
Version Actuelle 3.6.5
Dernière Mise à Jour 2019-11-15
Date de Publication 2019-11-15
Évaluation 4.81/5 Total 21 Évaluations
Développeur Ajmal Ali
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/ajmalali/auto-register-chrome
URL de la Page d'Aide https://forms.gle/CwoaBLHXn6BjzoiY8
Langues Prises en Charge 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"
    ]
}