reCAPTCHA Autoclick

Automatically clicks reCAPTCHA buttons when detected

Cos'è reCAPTCHA Autoclick?

reCAPTCHA Autoclick è un'estensione di Chrome sviluppata da ayinope, e la sua funzione principale è "Automatically clicks reCAPTCHA buttons when detected".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione reCAPTCHA Autoclick

Scarica i file di estensione reCAPTCHA Autoclick in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome reCAPTCHA Autoclick reCAPTCHA Autoclick
ID caahalkghnhbabknipmconmbicpkcopl
URL Ufficiale https://chromewebstore.google.com/detail/recaptcha-autoclick/caahalkghnhbabknipmconmbicpkcopl
Descrizione Automatically clicks reCAPTCHA buttons when detected
Dimensione del File 5.39 KB
Conteggio Installazioni 53,641
Versione Corrente 0.0.0.2
Ultimo Aggiornamento 2017-12-29
Data di Pubblicazione 2017-12-28
Valutazione 3.28/5 Totale 126 Valutazioni
Sviluppatore ayinope
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}