True Captcha

Solve image captchas automatically in the browser.

True Captchaคืออะไร?

True Captcha เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://truecaptcha.org และคุณลักษณะหลักของมันคือ "Solve image captchas automatically in the browser."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย True Captcha

ดาวน์โหลดไฟล์ส่วนขยาย 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
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
}