Automatic Clicker for reCAPTCHA of URL Shortener

This script is not resolver, only can click.

Verze ze dne 06. 03. 2017. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Automatic Clicker for reCAPTCHA of URL Shortener
// @namespace    http://hogehoge/
// @version      1.5
// @description  This script is not resolver, only can click.
// @author       H. Amami
// @match        *://www.google.com/recaptcha/api2/anchor?*
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';
    var check = function(ref) {
        //You can add domain(s) if you want.
        var domains = ["fas.li", "ouo.io", "ouo.press", "shink.in", "al.ly", "coinlink.co", "uploadbank.com", "short.am", "croco.site", "urlst.me"];
        for (var domain of domains) {
            if (~ref.indexOf(domain + "/")) return true;
        }
        return false;
    };
    if (check(document.referrer)) {
        var hoge = function() {
            document.getElementById("recaptcha-anchor").click();
        };
        setTimeout(hoge, 0);
        console.info("Automatic click of reCAPTCHA has been executed");
    }
})();