NTHU portal captcha solver
Solve captcha in NTHU portal using TensorFlow.js.
Cos'è NTHU portal captcha solver?
NTHU portal captcha solver è un'estensione di Chrome sviluppata da Po-Chen Lin, e la sua funzione principale è "Solve captcha in NTHU portal using TensorFlow.js.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione NTHU portal captcha solver
Scarica i file di estensione NTHU portal captcha solver in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | NTHU portal captcha solver |
ID | ocjlojnojbkmgkamdnhakhkfmfcfcgcl |
URL Ufficiale | https://chromewebstore.google.com/detail/nthu-portal-captcha-solve/ocjlojnojbkmgkamdnhakhkfmfcfcgcl |
Descrizione | Solve captcha in NTHU portal using TensorFlow.js. |
Dimensione del File | 33.24 MB |
Conteggio Installazioni | 124 |
Versione Corrente | 0.0.3 |
Ultimo Aggiornamento | 2022-09-15 |
Data di Pubblicazione | 2022-09-07 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Po-Chen Lin |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/danielpclin/nthu-portal-captcha-solver-extension |
Lingue Supportate | 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" } } |