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);
})();