Recaptcha clicker

Clicks on the button

ही स्क्रिप्ट इंस्टॉल करा?
लेखकाने सुचवलेली स्क्रिप्ट

तुम्हाला कदाचित ही स्क्रिप्टदेखील आवडेल: Adfly-skipper.

ही स्क्रिप्ट इंस्टॉल करा
// ==UserScript==
// @name         Recaptcha clicker
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Clicks on the button
// @author       giuseppe-dandrea
// @match        http*://www.google.com/recaptcha/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setTimeout(function() { document.getElementsByClassName("recaptcha-checkbox-checkmark")[0].click(); }, 1000);
})();