Auto-Register

Automate your course registration process

Auto-Registerとは何ですか?

Auto-RegisterはAjmal Aliによって開発されたChromeの拡張機能で、その主な機能は「Automate your course registration process」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Auto-Register拡張機能のCRXファイルをダウンロード

Auto-Register拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}