rektCaptcha: reCaptcha Solver

Automatically solve reCaptcha using AI.

rektCaptcha: reCaptcha Solver란 무엇입니까?

rektCaptcha: reCaptcha Solver은(는) ProtoChuz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically solve reCaptcha using AI."입니다.

확장 프로그램 스크린샷

screenshot

rektCaptcha: reCaptcha Solver 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Features:
- Automatically solve reCaptcha free of charge
- Solve reCaptcha without any limit
- No need to register or login

How does it work?

Simply install our extension, sit back and let the AI take care of the reCaptcha challenge. We use a lightweight image classification model to solve it.

Check out the source code in GitHub: https://github.com/Wikidepia/rektCaptcha-extension

####################
If you find this project useful, please consider donating:

Ko-fi (Paypal): https://ko-fi.com/wikidepia

TRON Address (TRX/USDT ONLY): TDdZgEp9q1LSLiTDSMSUSVuXcHBH2uFXhV                    

확장 프로그램 기본 정보

이름 rektCaptcha: reCaptcha Solver rektCaptcha: reCaptcha Solver
ID bbdhfoclddncoaomddgkaaphcnddbpdh
공식 URL https://chromewebstore.google.com/detail/rektcaptcha-recaptcha-sol/bbdhfoclddncoaomddgkaaphcnddbpdh
설명 Automatically solve reCaptcha using AI.
파일 크기 12.74 MB
설치 횟수 1,000
현재 버전 0.1.0
최근 업데이트 2023-12-06
출시 날짜 2023-12-06
평점 5.00/5 총 5 개의 평점
개발자 ProtoChuz
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "rektCaptcha: reCaptcha Solver",
    "version": "0.1.0",
    "description": "Automatically solve reCaptcha using AI.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "action": {
        "default_title": "rektCaptcha",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/*"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "models\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.google.com\/recaptcha\/*",
        "*:\/\/*.recaptcha.net\/recaptcha\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.google.com\/recaptcha\/api2\/*",
                "*:\/\/*.google.com\/recaptcha\/enterprise\/*",
                "*:\/\/*.recaptcha.net\/recaptcha\/api2\/*",
                "*:\/\/*.recaptcha.net\/recaptcha\/enterprise\/*"
            ],
            "js": [
                "recaptcha.js"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "match_about_blank": false
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "recaptcha-visibility.js"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "match_about_blank": false
        }
    ]
}