reCAPTCHA Solver: auto captcha bypass

An extension to automatically solve any type reCAPTCHA

reCAPTCHA Solver: auto captcha bypass란 무엇입니까?

reCAPTCHA Solver: auto captcha bypass은(는) uncaptcher에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to automatically solve any type reCAPTCHA"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

reCAPTCHA Solver: auto captcha bypass 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        reCAPTCHA Solver: auto captcha bypass extension

An extension to automatically solve any type reCAPTCHA.

Supported:
- reCAPTCHA v2
- reCAPTCHA v3
- reCAPTCHA Enterprise

How does it work.
To get your API key you need to create an account on the solving service.
Without API key extensions do not work.

A browser addon assists users in solving difficult captchas by completing reCAPTCHA on all websites.

It is not guaranteed that challenges are always solved. The limitations of the technology need to be considered.

Motivation
The difficulty of captchas can be so out of balance, that sometimes they seem friendlier to bots than they are to humans.

The goal of the project is to improve experience with captchas, by giving us easy access to solutions already utilized by automated systems.

reCAPTCHA challenges remain a considerable burden on the web, delaying and often blocking access to services and information depending on physical and cognitive abilities, social and cultural background, and the devices or networks connected from.                    

확장 프로그램 기본 정보

이름 reCAPTCHA Solver: auto captcha bypass reCAPTCHA Solver: auto captcha bypass
ID infdcenbdoibcacogknkjleclhnjdmfh
공식 URL https://chromewebstore.google.com/detail/recaptcha-solver-auto-cap/infdcenbdoibcacogknkjleclhnjdmfh
설명 An extension to automatically solve any type reCAPTCHA
파일 크기 110 KB
설치 횟수 20,000
현재 버전 1.0.2
최근 업데이트 2023-08-09
출시 날짜 2022-11-02
평점 4.54/5 총 254 개의 평점
개발자 uncaptcher
이메일 [email protected]
결제 유형 free
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "short_name": "__MSG_extShortName__",
    "default_locale": "en",
    "version": "1.0.2",
    "description": "__MSG_extDescription__",
    "manifest_version": 3,
    "background": {
        "service_worker": "service_worker.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup\/popup.html",
        "default_title": "reCAPTCHA Solver: auto captcha bypass",
        "default_icon": {
            "32": "assets\/images\/icon_32.png",
            "128": "assets\/images\/icon_128.png"
        }
    },
    "icons": {
        "32": "assets\/images\/icon_32.png",
        "128": "assets\/images\/icon_128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "css": [
                "content\/style.css"
            ],
            "js": [
                "vendor\/jquery\/3.5.1\/jquery.min.js",
                "common\/config.js",
                "content\/core_helpers.js",
                "content\/script.js",
                "content\/captcha\/recaptcha\/processor.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/images\/*",
                "content\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}