NTHU portal captcha solver
Solve captcha in NTHU portal using TensorFlow.js.
What is NTHU portal captcha solver?
NTHU portal captcha solver is a Chrome extension developed by Po-Chen Lin, and its main feature is "Solve captcha in NTHU portal using TensorFlow.js.".
Extension Screenshots
Download NTHU portal captcha solver Extension CRX File
Download NTHU portal captcha solver 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
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
Extension Basic Information
Name | NTHU portal captcha solver |
ID | ocjlojnojbkmgkamdnhakhkfmfcfcgcl |
Official URL | https://chromewebstore.google.com/detail/nthu-portal-captcha-solve/ocjlojnojbkmgkamdnhakhkfmfcfcgcl |
Description | Solve captcha in NTHU portal using TensorFlow.js. |
File Size | 33.24 MB |
Installation Count | 124 |
Current Version | 0.0.3 |
Last Updated | 2022-09-15 |
Publish Date | 2022-09-07 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Po-Chen Lin |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/danielpclin/nthu-portal-captcha-solver-extension |
Supported Languages | 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" } } |