NTHU portal captcha solver

Solve captcha in NTHU portal using TensorFlow.js.

O que é NTHU portal captcha solver?

NTHU portal captcha solver é uma extensão do Chrome desenvolvida por Po-Chen Lin, e sua principal característica é "Solve captcha in NTHU portal using TensorFlow.js.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão NTHU portal captcha solver

Baixe arquivos de extensão NTHU portal captcha solver no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome NTHU portal captcha solver NTHU portal captcha solver
ID ocjlojnojbkmgkamdnhakhkfmfcfcgcl
URL Oficial https://chromewebstore.google.com/detail/nthu-portal-captcha-solve/ocjlojnojbkmgkamdnhakhkfmfcfcgcl
Descrição Solve captcha in NTHU portal using TensorFlow.js.
Tamanho do Arquivo 33.24 MB
Contagem de Instalações 124
Versão Atual 0.0.3
Última Atualização 2022-09-15
Data de Publicação 2022-09-07
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Po-Chen Lin
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/danielpclin/nthu-portal-captcha-solver-extension
Idiomas Suportados 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"
    }
}