NoCaptcha Solver

Solve your captcha problem, like reCAPTCHA/hCAPTCHA and more

NoCaptcha Solverとは何ですか?

NoCaptcha Solverはyoupaichrisによって開発されたChromeの拡張機能で、その主な機能は「Solve your captcha problem, like reCAPTCHA/hCAPTCHA and more」です。

拡張機能のスクリーンショット

screenshot

NoCaptcha Solver拡張機能のCRXファイルをダウンロード

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
Eメール [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": [
                ""
            ]
        }
    ]
}