reCAPTCHA Autoclick

Automatically clicks reCAPTCHA buttons when detected

Vad är reCAPTCHA Autoclick?

reCAPTCHA Autoclick är en Chrome-tillägg utvecklad av ayinope, och dess huvudfunktion är "Automatically clicks reCAPTCHA buttons when detected".

Tilläggsskärmbilder

screenshot

Ladda ner reCAPTCHA Autoclick-förlängningens CRX-fil

Ladda ner reCAPTCHA Autoclick-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn reCAPTCHA Autoclick reCAPTCHA Autoclick
ID caahalkghnhbabknipmconmbicpkcopl
Officiell webbadress https://chromewebstore.google.com/detail/recaptcha-autoclick/caahalkghnhbabknipmconmbicpkcopl
Beskrivning Automatically clicks reCAPTCHA buttons when detected
Filstorlek 5.39 KB
Antal Installationer 53,641
Aktuell Version 0.0.0.2
Senast Uppdaterad 2017-12-29
Publiceringsdatum 2017-12-28
Betyg 3.28/5 Totalt 126 Betyg
Utvecklare ayinope
Betalningssätt free
Stödda Språk 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"
        }
    ]
}