Auto-Register
Automate your course registration process
What is Auto-Register?
Auto-Register is a Chrome extension developed by Ajmal Ali, and its main feature is "Automate your course registration process".
Extension Screenshots
Download Auto-Register Extension CRX File
Download Auto-Register extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 Extension Basic Information
| Name | |
| ID | cdnggghhipolhgompbcoofhkebpogdoe |
| Official URL | https://chromewebstore.google.com/detail/auto-register/cdnggghhipolhgompbcoofhkebpogdoe |
| Description | Automate your course registration process |
| File Size | 808 KB |
| Installation Count | 5,137 |
| Current Version | 3.6.5 |
| Last Updated | 2019-11-15 |
| Publish Date | 2019-11-15 |
| Rating | 4.81/5 Total 21 Ratings |
| Developer | Ajmal Ali |
| [email protected] | |
| Payment Type | free |
| Extension Website | https://github.com/ajmalali/auto-register-chrome |
| Help Page URL | https://forms.gle/CwoaBLHXn6BjzoiY8 |
| Supported Languages | 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"
]
} | |