True Captcha

Solve image captchas automatically in the browser.

True Captcha क्या है?

True Captcha https://truecaptcha.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Solve image captchas automatically in the browser."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में True Captcha एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}