NTHU portal captcha solver
Solve captcha in NTHU portal using TensorFlow.js.
NTHU portal captcha solverとは何ですか?
NTHU portal captcha solverはPo-Chen Linによって開発されたChromeの拡張機能で、その主な機能は「Solve captcha in NTHU portal using TensorFlow.js.」です。
拡張機能のスクリーンショット
NTHU portal captcha solver拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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" } } |