Auto-Register

Automate your course registration process

Auto-Register क्या है?

Auto-Register Ajmal Ali द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automate your course registration process"।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में Auto-Register एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Auto-Register Auto-Register
ID cdnggghhipolhgompbcoofhkebpogdoe
आधिकारिक URL https://chromewebstore.google.com/detail/auto-register/cdnggghhipolhgompbcoofhkebpogdoe
विवरण Automate your course registration process
फ़ाइल का आकार 808 KB
स्थापना संख्या 5,137
वर्तमान संस्करण 3.6.5
अंतिम अपडेट 2019-11-15
प्रकाशन तिथि 2019-11-15
रेटिंग 4.81/5 कुल 21 रेटिंग्स
डेवलपर Ajmal Ali
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ajmalali/auto-register-chrome
सहायता पृष्ठ URL https://forms.gle/CwoaBLHXn6BjzoiY8
समर्थित भाषाएँ 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"
    ]
}