Auto-Register

Automate your course registration process

Auto-Register là gì?

Auto-Register là một tiện ích mở rộng Chrome được phát triển bởi Ajmal Ali, và tính năng chính của nó là "Automate your course registration process".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Auto-Register

Tải xuống các tệp mở rộng Auto-Register dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Auto-Register Auto-Register
ID cdnggghhipolhgompbcoofhkebpogdoe
URL Chính Thức https://chromewebstore.google.com/detail/auto-register/cdnggghhipolhgompbcoofhkebpogdoe
Mô tả Automate your course registration process
Kích Thước Tệp 808 KB
Số Lần Cài Đặt 5,137
Phiên Bản Hiện Tại 3.6.5
Cập Nhật Lần Cuối 2019-11-15
Ngày Phát Hành 2019-11-15
Đánh Giá 4.81/5 Tổng số 21 Đánh Giá
Nhà Phát Triển Ajmal Ali
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ajmalali/auto-register-chrome
URL Trang Trợ Giúp https://forms.gle/CwoaBLHXn6BjzoiY8
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}