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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } |