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."입니다.

확장 프로그램 스크린샷

screenshot

NTHU portal captcha solver 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
이메일 [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"
    }
}