True Captcha

Solve image captchas automatically in the browser.

True Captcha란 무엇입니까?

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

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        ~~An extension to recognize the text in the Captcha   and copy it to paste anywhere~~
❗️❗️❗️Extension is free,  you Don't to purchase an API KEY❗️❗️❗️
In order to obtain API KEY you have to create an account on https://apitruecaptcha.org/ and use the 100 Captcha free per day. 

 🐣SETUP INSTRUCTIONS 🐣
After adding the chrome extension, Click on the extension icon. 
Click on big blue button to register/login. 
After  register-ing/login your User name , API Key with your balance will be linked to your extension. 
 
After  register-ing/login ,Copy paste your User name , API Key into the plugin from https://apitruecaptcha.org/user. This is bring your balance info to the extension. 

 🐣USGAE 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 recognization will be enabled on the next visit to webpage/Reload. 

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

Kindly recharge if you want to use more than 100 Captcha per day

<< Disclaimer: we are working hard on enhancing the service to solve all Captcha types in most common usage websites. Please note that success rate depends on the text type in the Captcha. For any specific use case, please reach out to out fantastic customer support team >>

Copyright © All rights reserved  TrueCaptcha
🦾by APITrueCaptcha                    

확장 프로그램 기본 정보

이름 True Captcha True Captcha
ID ekbpmgkfehkgcffncpghihhpblhijnbp
공식 URL https://chromewebstore.google.com/detail/true-captcha/ekbpmgkfehkgcffncpghihhpblhijnbp
설명 Solve image captchas automatically in the browser.
파일 크기 68.59 KB
설치 횟수 1,157
현재 버전 0.2
최근 업데이트 2021-07-16
출시 날짜 2021-06-28
평점 2.70/5 총 10 개의 평점
개발자 prudhvirajs
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://apitruecaptcha.org/
도움말 페이지 URL https://apitruecaptcha.org/api
지원되는 언어 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.2",
    "permissions": [
        "storage",
        "https:\/\/api.apitruecaptcha.org\/*",
        "contextMenus",
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "data\/hosts.json",
        "popup.css"
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/TrueCaptchaLogo16.png",
            "32": "\/images\/TrueCaptchaLogo32.png",
            "48": "\/images\/TrueCaptchaLogo48.png",
            "128": "\/images\/TrueCaptchaLogo128.png"
        }
    },
    "icons": {
        "16": "\/images\/TrueCaptchaLogo16.png",
        "32": "\/images\/TrueCaptchaLogo32.png",
        "48": "\/images\/TrueCaptchaLogo48.png",
        "128": "\/images\/TrueCaptchaLogo128.png"
    },
    "manifest_version": 2
}