NoCaptcha Solver

Solve your captcha problem, like reCAPTCHA/hCAPTCHA and more

NoCaptcha Solverคืออะไร?

NoCaptcha Solver เป็นส่วนขยายของ Chrome ที่พัฒนาโดย youpaichris และคุณลักษณะหลักของมันคือ "Solve your captcha problem, like reCAPTCHA/hCAPTCHA and more"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย NoCaptcha Solver ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        NoCaptcha Solver 是一个专注于解决人机挑战的扩展插件,他能够解放你的双手,无感地解决繁琐的验证码流程。

无论是在注册新账户、登录网站, 还是在日常工作中遇到验证码障碍, 此插件都将成为你的绝佳伴侣。                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ NoCaptcha Solver NoCaptcha Solver
ID kkphlbgphimpedeckcepigahenlmpggc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/nocaptcha-solver/kkphlbgphimpedeckcepigahenlmpggc
คำอธิบาย Solve your captcha problem, like reCAPTCHA/hCAPTCHA and more
ขนาดไฟล์ 377 KB
จำนวนการติดตั้ง 322
เวอร์ชันปัจจุบัน 0.1.6
อัปเดตครั้งล่าสุด 2023-12-13
วันที่เผยแพร่ 2023-09-25
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา youpaichris
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://nocaptcha.io
URL หน้าช่วยเหลือ https://nocaptcha.io
ภาษาที่รองรับ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NoCaptcha Solver",
    "version": "0.1.6",
    "description": "Solve your captcha problem, like reCAPTCHA\/hCAPTCHA and more",
    "author": "NoCaptcha",
    "homepage_url": "https:\/\/nocaptcha.io",
    "icons": {
        "48": "icon.png"
    },
    "action": {
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "background",
        "storage"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/google.com\/recaptcha\/api2\/*",
                "https:\/\/google.com\/recaptcha\/enterprise\/*",
                "https:\/\/recaptcha.net\/recaptcha\/api2\/*",
                "https:\/\/recaptcha.net\/recaptcha\/enterprise\/*",
                "https:\/\/www.google.com\/recaptcha\/api2\/*",
                "https:\/\/www.google.com\/recaptcha\/enterprise\/*",
                "https:\/\/www.recaptcha.net\/recaptcha\/api2\/*",
                "https:\/\/www.recaptcha.net\/recaptcha\/enterprise\/*",
                "https:\/\/recaptcha.google.cn\/recaptcha\/api2\/*",
                "https:\/\/recaptcha.google.cn\/recaptcha\/enterprise\/*",
                "https:\/\/*\/captcha\/v1\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content-msg.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/inject-recaptcha.js",
                "\/inject-hcaptcha.js",
                "\/inject-msg.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}