True Captcha

Solve image captchas automatically in the browser.

True Captcha란 무엇입니까?

True Captcha은(는) https://truecaptcha.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Solve image captchas automatically in the browser."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

True Captcha 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        DESCRIPTION
-------------------------------------
Our extension helps solving the captcha in the browser so that you can avoid entering the captcha yourself. This extension only supports image to text captchas. 

SETUP INSTRUCTIONS
--------------------------------------------------------
After adding the chrome extension, click on the extension icon.  After  registration, enter your User name , API Key into the plugin from https://truecaptcha.org

 USAGE INSTRUCTIONS
-----------------------------------------------------------
Right click on the Captcha you want to recognize the text from and select "Solve captcha".
Right click on the text box you want to paste the obtained text and select "Paste Captcha".
Automatic recognition will be enabled on the next visit to the webpage. 

If any website is not supported, reach out to support team to add a URL to our supported URL list.                    

확장 프로그램 기본 정보

이름 True Captcha True Captcha
ID cpmfphibjofbcckoemdobkngmghblbmd
공식 URL https://chromewebstore.google.com/detail/true-captcha/cpmfphibjofbcckoemdobkngmghblbmd
설명 Solve image captchas automatically in the browser.
파일 크기 76.2 KB
설치 횟수 1,403
현재 버전 0.3.8
최근 업데이트 2023-03-30
출시 날짜 2022-10-06
평점 5.00/5 총 1 개의 평점
개발자 https://truecaptcha.org
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://truecaptcha.org/
도움말 페이지 URL https://truecaptcha.org/contact.html
개인정보 보호 정책 페이지 URL https://truecaptcha.org/terms.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "True Captcha",
    "description": "Solve image captchas automatically in the browser.",
    "version": "0.3.8",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        "https:\/\/api.apitruecaptcha.org\/*",
        "https:\/\/api.truecaptcha.org\/*",
        "http:\/\/localhost:3000\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/const.js",
                "lib\/utils.js",
                "lib\/storage.js",
                "lib\/options.js",
                "lib\/credentials.js",
                "lib\/hello.js",
                "lib\/getUniqueSelector.js",
                "lib\/selector.js",
                "lib\/clicker.js",
                "lib\/image.js",
                "lib\/solver.js",
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/TrueCaptchaLogo16.png",
            "32": "\/images\/TrueCaptchaLogo32.png",
            "48": "\/images\/TrueCaptchaLogo48.png",
            "128": "\/images\/TrueCaptchaLogo128.png"
        }
    },
    "options_page": "options.html",
    "icons": {
        "16": "\/images\/TrueCaptchaLogo16.png",
        "32": "\/images\/TrueCaptchaLogo32.png",
        "48": "\/images\/TrueCaptchaLogo48.png",
        "128": "\/images\/TrueCaptchaLogo128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "manifest_version": 3
}