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文件

下載True Captcha擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}