Automatic Clicker for reCAPTCHA of URL Shortener

This script is not resolver, only can click.

目前为 2017-03-11 提交的版本。查看 最新版本

// ==UserScript==
// @name         Automatic Clicker for reCAPTCHA of URL Shortener
// @namespace    http://hogehoge/
// @version      1.7
// @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", "cpmlink.net", "ally.sh"];
        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");
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址