CapMonster Cloud — automated captcha solver
Online service for automated captcha solving
CapMonster Cloud — automated captcha solverとは何ですか?
CapMonster Cloud — automated captcha solverはZennolabによって開発されたChromeの拡張機能で、その主な機能は「Online service for automated captcha solving」です。
拡張機能のスクリーンショット
CapMonster Cloud — automated captcha solver拡張機能のCRXファイルをダウンロード
CapMonster Cloud — automated captcha solver拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
With this extension, you can recognize reCAPTCHA, hCaptcha and other types of captchas automatically. The extension is designed to work in Google Chrome. How to start using the Capmonster Cloud extension: 1. Add an extension to your browser 2. Register on https://capmonster.cloud 3. Top up your balance 4. Enter the API key in the extension 5. The extension will automatically recognize captchas
拡張機能の基本情報
名前 | CapMonster Cloud — automated captcha solver |
ID | pabjfbciaedomjjfelfafejkppknjleh |
公式URL | https://chromewebstore.google.com/detail/capmonster-cloud-%E2%80%94-automa/pabjfbciaedomjjfelfafejkppknjleh |
説明 | Online service for automated captcha solving |
ファイルサイズ | 1.14 MB |
インストール数 | 10,701 |
現在のバージョン | 1.11.12 |
最終更新日 | 2024-03-01 |
公開日 | 2022-07-15 |
評価 | 4.48/5 合計 54 レビュー |
開発者 | Zennolab |
Eメール | [email protected] |
支払い方法 | in_app |
拡張機能のウェブサイト | https://capmonster.cloud |
ヘルプページのURL | https://helpdesk.zennolab.com/ru/conversation/new |
プライバシーポリシーページのURL | https://zennolab.com/ru/terms-of-service |
対応言語 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "default_locale": "en", "name": "__MSG_extName__", "description": "__MSG_extDesc__", "short_name": "__MSG_extShortName__", "version": "1.11.12", "icons": { "48": "img\/icon.png" }, "action": { "default_icon": "img\/icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "css\/content\/solver.css" ], "run_at": "document_start" }, { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "turnstileInterceptor.js" ], "run_at": "document_start" }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "recaptcha.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "hcaptcha.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "*:\/\/*.arkoselabs.com\/fc\/*", "*:\/\/*.funcaptcha.com\/fc\/*" ], "js": [ "funcaptcha.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "pageScriptHandler.js" ], "run_at": "document_start", "all_frames": false } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage", "cookies", "contextMenus", "activeTab", "declarativeNetRequest", "declarativeNetRequestFeedback", "scripting" ], "host_permissions": [ " |