True Captcha

Solve image captchas automatically in the browser.

Qu'est-ce que True Captcha ?

True Captcha est une extension Chrome développée par https://truecaptcha.org, et sa fonction principale est "Solve image captchas automatically in the browser.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension True Captcha

Téléchargez les fichiers d'extension True Captcha au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom True Captcha True Captcha
ID cpmfphibjofbcckoemdobkngmghblbmd
URL Officiel https://chromewebstore.google.com/detail/true-captcha/cpmfphibjofbcckoemdobkngmghblbmd
Description Solve image captchas automatically in the browser.
Taille du Fichier 76.2 KB
Nombre d'Installations 1,403
Version Actuelle 0.3.8
Dernière Mise à Jour 2023-03-30
Date de Publication 2022-10-06
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://truecaptcha.org
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://truecaptcha.org/
URL de la Page d'Aide https://truecaptcha.org/contact.html
URL de la Page de Politique de Confidentialité https://truecaptcha.org/terms.html
Langues Prises en Charge 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
}