CityU Quick Course Adder
To help you fill the CRNs quickly.
ما هو CityU Quick Course Adder؟
CityU Quick Course Adder هو إضافة Chrome تم تطويرها بواسطة h.mattjunk، والميزة الرئيسية لها هي "To help you fill the CRNs quickly.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة CityU Quick Course Adder
قم بتنزيل ملفات الامتداد CityU Quick Course Adder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The CityU Quick Course Adder is a helpful Chrome extension that makes entering CRNs faster. You just preload your CRNs, and the extension will automatically instantly put them on the 'Add or Drop Classes' page for you. It's a real time-saver! This is an updated version, building on the original 2016 version by Sam (ideati.me), which is no longer available.
معلومات أساسية عن التمديد
الاسم | CityU Quick Course Adder |
ID | ailiklnkhplhpoeakbpcgomfdglmojbh |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/cityu-quick-course-adder/ailiklnkhplhpoeakbpcgomfdglmojbh |
الوصف | To help you fill the CRNs quickly. |
حجم الملف | 34.91 KB |
عدد التثبيتات | 459 |
النسخة الحالية | 1.0 |
آخر تحديث | 2023-09-06 |
تاريخ النشر | 2023-09-06 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | h.mattjunk |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension |
عنوان صفحة المساعدة | https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension/wiki/How-To-Use%3F |
عنوان صفحة سياسة الخصوصية | https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension/wiki/Privacy-Policy |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "CityU Quick Course Adder", "description": "To help you fill the CRNs quickly.", "version": "1.0", "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/banweb.cityu.edu.hk\/*", "http:\/\/banweb.cityu.edu.hk\/*" ], "js": [ "contentScript.js" ], "include_globs": [ "*bwskfreg.P_AltPin*" ] } ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |