CapMonster Cloud — automated captcha solver
Online service for automated captcha solving
Τι είναι το CapMonster Cloud — automated captcha solver;
Το CapMonster Cloud — automated captcha solver είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Zennolab, και η κύρια λειτουργία του είναι "Online service for automated captcha solving".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης CapMonster Cloud — automated captcha solver
Λήψη αρχείων επέκτασης 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 |
Ηλεκτρονικό ταχυδρομείο | [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": [ " |