reCAPTCHA Autoclick

Automatically clicks reCAPTCHA buttons when detected

What is reCAPTCHA Autoclick?

reCAPTCHA Autoclick is a Chrome extension developed by ayinope, and its main feature is "Automatically clicks reCAPTCHA buttons when detected".

Extension Screenshots

screenshot

Download reCAPTCHA Autoclick Extension CRX File

Download reCAPTCHA Autoclick 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

                        reCAPTCHA Autoclick is a simple chrome extension that automatically clicks reCATPCHA checkboxes on a page when it detects them.                    

Extension Basic Information

Name reCAPTCHA Autoclick reCAPTCHA Autoclick
ID caahalkghnhbabknipmconmbicpkcopl
Official URL https://chromewebstore.google.com/detail/recaptcha-autoclick/caahalkghnhbabknipmconmbicpkcopl
Description Automatically clicks reCAPTCHA buttons when detected
File Size 5.39 KB
Installation Count 53,641
Current Version 0.0.0.2
Last Updated 2017-12-29
Publish Date 2017-12-28
Rating 3.28/5 Total 126 Ratings
Developer ayinope
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "reCAPTCHA Autoclick",
    "description": "Automatically clicks reCAPTCHA buttons when detected",
    "version": "0.0.0.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "reCAPTCHA Autoclick"
    },
    "permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "autoclick.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ]
}