CapMonster Cloud — automated captcha solver
Online service for automated captcha solving
What is CapMonster Cloud — automated captcha solver?
CapMonster Cloud — automated captcha solver is a Chrome extension developed by Zennolab, and its main feature is "Online service for automated captcha solving".
Extension Screenshots
Download CapMonster Cloud — automated captcha solver Extension CRX File
Download CapMonster Cloud — automated captcha solver extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | CapMonster Cloud — automated captcha solver |
ID | pabjfbciaedomjjfelfafejkppknjleh |
Official URL | https://chromewebstore.google.com/detail/capmonster-cloud-%E2%80%94-automa/pabjfbciaedomjjfelfafejkppknjleh |
Description | Online service for automated captcha solving |
File Size | 1.14 MB |
Installation Count | 10,701 |
Current Version | 1.11.12 |
Last Updated | 2024-03-01 |
Publish Date | 2022-07-15 |
Rating | 4.48/5 Total 54 Ratings |
Developer | Zennolab |
[email protected] | |
Payment Type | in_app |
Extension Website | https://capmonster.cloud |
Help Page URL | https://helpdesk.zennolab.com/ru/conversation/new |
Privacy Policy Page URL | https://zennolab.com/ru/terms-of-service |
Supported Languages | 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": [ " |