AutoCRN

Helps you a little bit when registering courses @ CityU

ما هو AutoCRN؟

AutoCRN هو إضافة Chrome تم تطويرها بواسطة lhc70000، والميزة الرئيسية لها هي "Helps you a little bit when registering courses @ CityU".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة AutoCRN

قم بتنزيل ملفات الامتداد AutoCRN بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This is an open source project. Contribution is welcomed at
https://github.com/lhc70000/AutoCRN_Chrome.


Features:

- Fill in CRNs
- Submit CRNs automatically
- Refresh every 5 minutes to avoid session timeout (idea from Shawn)
- Auto refresh at an exact time
- Retry when page load time > 5s (not sure whether it works)


IMPORTANT:

- Please read and understand the regulations and restrictions of ARRO, and consider whether it's appropriate before you actually use it.
- The project is experimental and unstable. The developer is not responsible for any possible consequence.                    

معلومات أساسية عن التمديد

الاسم AutoCRN AutoCRN
ID fnamipcehfmjomamkpgibdidlnlaobgf
عنوان URL الرسمي https://chromewebstore.google.com/detail/autocrn/fnamipcehfmjomamkpgibdidlnlaobgf
الوصف Helps you a little bit when registering courses @ CityU
حجم الملف 286 KB
عدد التثبيتات 920
النسخة الحالية 1.0.1
آخر تحديث 2016-08-15
تاريخ النشر 2016-08-15
تقييم 5.00/5 مجموع تقييمات 1
المطور lhc70000
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoCRN",
    "description": "Helps you a little bit when registering courses @ CityU",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "CityU Course Registration Helper"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/banweb.cityu.edu.hk\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/banweb.cityu.edu.hk\/*"
            ],
            "js": [
                "add_crn.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}