NopeCHA: CAPTCHA Solver

Automatically solve reCAPTCHA, hCaptcha, FunCAPTCHA, AWS WAF, and text CAPTCHA using AI.

NopeCHA: CAPTCHA Solver क्या है?

NopeCHA: CAPTCHA Solver https://nopecha.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically solve reCAPTCHA, hCaptcha, FunCAPTCHA, AWS WAF, and text CAPTCHA using AI."।

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में NopeCHA: CAPTCHA Solver एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Free for personal use. Works on all websites.


Supported CAPTCHA types:
- reCAPTCHA v2
- reCAPTCHA v3
- reCAPTCHA Enterprise
- hCaptcha
- hCaptcha Enterprise
- FunCAPTCHA
- AWS WAF CAPTCHA
- Text-based CAPTCHA
- Cloudflare Turnstile 
- Human (PerimeterX)


How does it work?

        We use state-of-the-art deep learning algorithms by Google, Meta, Microsoft, and NVIDIA AI. When you encounter a CAPTCHA challenge, it is solved in the cloud, and our active learning pipeline automatically and continuously improves the AI.
        Simply put, as more users use our extension, our AI gets better at solving CAPTCHAs. When new CAPTCHA types are added, our AI learns to solve them in real-time!


For more information, visit our website: https://nopecha.com

View our documentation: https://developers.nopecha.com

View project on GitHub: https://nopecha.com/github

Contact us on Discord: https://nopecha.com/discord

Firefox add-on: https://nopecha.com/firefox


Join us on Discord for access to beta features!                    

एक्सटेंशन की मूल जानकारी

नाम NopeCHA: CAPTCHA Solver NopeCHA: CAPTCHA Solver
ID dknlfmjaanfblgfdfebhijalfmhmjjjo
आधिकारिक URL https://chromewebstore.google.com/detail/nopecha-captcha-solver/dknlfmjaanfblgfdfebhijalfmhmjjjo
विवरण Automatically solve reCAPTCHA, hCaptcha, FunCAPTCHA, AWS WAF, and text CAPTCHA using AI.
फ़ाइल का आकार 123 KB
स्थापना संख्या 109,827
वर्तमान संस्करण v0.4.7
अंतिम अपडेट 2023-11-16
प्रकाशन तिथि 2022-07-08
रेटिंग 3.20/5 कुल 413 रेटिंग्स
डेवलपर https://nopecha.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.nopecha.com
सहायता पृष्ठ URL https://www.nopecha.com/discord
गोपनीयता नीति पृष्ठ URL https://www.nopecha.com/privacy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NopeCHA: CAPTCHA Solver",
    "version": "0.4.7",
    "description": "Automatically solve reCAPTCHA, hCaptcha, FunCAPTCHA, AWS WAF, and text CAPTCHA using AI.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.hcaptcha.com\/captcha\/*"
            ],
            "js": [
                "eventhook.js",
                "captcha\/hcaptcha.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.google.com\/recaptcha\/*",
                "*:\/\/*.recaptcha.net\/recaptcha\/*"
            ],
            "js": [
                "eventhook.js",
                "captcha\/recaptcha.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.arkoselabs.com\/fc\/*",
                "*:\/\/*.funcaptcha.com\/fc\/*",
                "*:\/\/*\/fc\/assets\/*"
            ],
            "js": [
                "captcha\/funcaptcha.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/challenges.cloudflare.com\/cdn-cgi\/challenge-platform\/h\/b\/turnstile\/if\/ov2\/av0\/*",
                "*:\/\/challenges.cloudflare.com\/cdn-cgi\/challenge-platform\/h\/g\/turnstile\/if\/ov2\/av0\/*"
            ],
            "js": [
                "eventhook.js",
                "captcha\/turnstile.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/nopecha.com\/setup"
            ],
            "js": [
                "pages\/setup.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/nopecha.com\/integrate"
            ],
            "js": [
                "pages\/integrate.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/nopecha.com\/demo\/funcaptcha"
            ],
            "js": [
                "pages\/funcaptcha-demo.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "captcha\/awscaptcha.js",
                "captcha\/textcaptcha.js",
                "captcha\/perimeterx.js"
            ],
            "run_at": "document_end",
            "match_about_blank": true,
            "all_frames": true
        }
    ],
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "manifest_version": 3,
    "permissions": [
        "declarativeNetRequest",
        "storage",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_title": "NopeCHA: CAPTCHA Solver",
        "default_icon": "icon\/16.png",
        "default_popup": "popup.html"
    },
    "host_permissions": [
        ""
    ],
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlWiyXSK0GK0nDwOfOJ2zUvRv99E2XU6LnR67zKE5RjM2icff7Cwmo6nR5i+4UukShIyEaDdQsbC+vyTpDeaJMn+bNphPYjQxGY6spIk3KV1h71Jj0dSUOYUwGrViKg3LnC4LKtENYOsbIxTmMw8JG4oH1hU1tY4KlnSzcqiwTaDLTP0X7MVdDK0WPOyypNlkL7v1HWMjPZa32EudqcrWub\/EMpMFuSugTyIu8dHaAQhW13RkU77BiMRoZfZYxbcED48YPmZS8qi3KOrymjOTWCJeDMjwy\/MLCqrwhjoG1Y5jDXHFbxNUPxEJYw9mxxPTN+asraML9tywlLuzZluHwwIDAQAB",
    "minimum_chrome_version": "100.0",
    "version_name": "v0.4.7"
}