NTHU portal captcha solver

Solve captcha in NTHU portal using TensorFlow.js.

Co to jest NTHU portal captcha solver?

NTHU portal captcha solver to rozszerzenie Chrome opracowane przez Po-Chen Lin, a jego główną funkcją jest „Solve captcha in NTHU portal using TensorFlow.js.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia NTHU portal captcha solver

Pobierz pliki rozszerzeń NTHU portal captcha solver w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa NTHU portal captcha solver NTHU portal captcha solver
ID ocjlojnojbkmgkamdnhakhkfmfcfcgcl
Oficjalny URL https://chromewebstore.google.com/detail/nthu-portal-captcha-solve/ocjlojnojbkmgkamdnhakhkfmfcfcgcl
Opis Solve captcha in NTHU portal using TensorFlow.js.
Rozmiar pliku 33.24 MB
Liczba instalacji 124
Aktualna Wersja 0.0.3
Ostatnia Aktualizacja 2022-09-15
Data Publikacji 2022-09-07
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Po-Chen Lin
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/danielpclin/nthu-portal-captcha-solver-extension
Obsługiwane Języki 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"
    }
}