NTHU portal captcha solver
Solve captcha in NTHU portal using TensorFlow.js.
ما هو NTHU portal captcha solver؟
NTHU portal captcha solver هو إضافة Chrome تم تطويرها بواسطة Po-Chen Lin، والميزة الرئيسية لها هي "Solve captcha in NTHU portal using TensorFlow.js.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة NTHU portal captcha solver
قم بتنزيل ملفات الامتداد NTHU portal captcha solver بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This chrome extension solves the captcha on https://www.ccxp.nthu.edu.tw/ccxp/INQUIRE/ and auto fills. Source: https://github.com/danielpclin/nthu-portal-captcha-solver-extension
معلومات أساسية عن التمديد
الاسم | NTHU portal captcha solver |
ID | ocjlojnojbkmgkamdnhakhkfmfcfcgcl |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/nthu-portal-captcha-solve/ocjlojnojbkmgkamdnhakhkfmfcfcgcl |
الوصف | Solve captcha in NTHU portal using TensorFlow.js. |
حجم الملف | 33.24 MB |
عدد التثبيتات | 124 |
النسخة الحالية | 0.0.3 |
آخر تحديث | 2022-09-15 |
تاريخ النشر | 2022-09-07 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Po-Chen Lin |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/danielpclin/nthu-portal-captcha-solver-extension |
اللغات المدعومة | zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NTHU portal captcha solver", "version": "0.0.3", "description": "Solve captcha in NTHU portal using TensorFlow.js.", "permissions": [ "webNavigation" ], "background": { "service_worker": "src\/service_worker.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.ccxp.nthu.edu.tw\/ccxp\/INQUIRE\/", "https:\/\/www.ccxp.nthu.edu.tw\/ccxp\/INQUIRE\/index.php" ], "js": [ "src\/content.js" ], "all_frames": true, "run_at": "document_start" } ], "manifest_version": 3, "icons": { "16": "images\/panda_16.png", "32": "images\/panda_32.png", "48": "images\/panda_48.png", "128": "images\/panda_128.png" } } |