MultiBot solver plugin allows you to automatically solve CAPTCHAs found on any webpage
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"action": {
"default_icon": {
"32": "assets/images/icon_32.png",
"128": "assets/images/icon_128.png"
},
"default_popup": "popup/popup.html",
"default_title": "MultiBot Captcha: Auto Recognition and Bypass"
},
"background": {
"service_worker": "service_worker.js"
},
"content_scripts": [
{
"all_frames": true,
"css": [
"content/style.css"
],
"js": [
"vendor/jquery/3.5.1/jquery.min.js",
"common/config.js",
"content/core_helpers.js",
"content/script.js",
"content/captcha/hcaptcha/processor.js",
"content/captcha/recaptcha/processor.js",
"content/captcha/antibot/hunter.js",
"content/captcha/antibot/processor.js",
"content/captcha/normal/hunter.js",
"content/captcha/normal/processor.js",
"content/captcha/slider/processor.js",
"content/captcha/icons/processor.js",
"content/captcha/upside/processor.js",
"content/captcha/turnstile/processor.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_start"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"default_locale": "en",
"description": "__MSG_extDescription__",
"homepage_url": "https://multibot.in/",
"host_permissions": [
"<all_urls>"
],
"icons": {
"32": "assets/images/icon_32.png",
"128": "assets/images/icon_128.png"
},
"manifest_version": 3,
"name": "__MSG_extName__",
"options_ui": {
"open_in_tab": true,
"page": "options/options.html"
},
"permissions": [
"storage",
"contextMenus"
],
"version": "2.6.7",
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"assets/images/*",
"content/*"
]
}
]
}