reCAPTCHA Autoclick

Automatically clicks reCAPTCHA buttons when detected

Wat is reCAPTCHA Autoclick?

reCAPTCHA Autoclick is een Chrome-extensie ontwikkeld door ayinope, en de belangrijkste functie is "Automatically clicks reCAPTCHA buttons when detected".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie reCAPTCHA Autoclick

Download reCAPTCHA Autoclick-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam reCAPTCHA Autoclick reCAPTCHA Autoclick
ID caahalkghnhbabknipmconmbicpkcopl
Officiële URL https://chromewebstore.google.com/detail/recaptcha-autoclick/caahalkghnhbabknipmconmbicpkcopl
Beschrijving Automatically clicks reCAPTCHA buttons when detected
Bestandsgrootte 5.39 KB
Aantal Installaties 53,641
Huidige Versie 0.0.0.2
Laatst Bijgewerkt 2017-12-29
Publicatiedatum 2017-12-28
Beoordeling 3.28/5 Totaal 126 Beoordelingen
Ontwikkelaar ayinope
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}