reCAPTCHA ShortLink Clicker

This script is not resolver, only can click. Currently wi.cr, adsrt.com

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name            reCAPTCHA ShortLink Clicker
// @name:ja         reCAPTCHAのShortLinkボタンを自動クリック
// @namespace       http://fdjaosfijoasfsaf/
// @version         2.5
// @description     This script is not resolver, only can click. Currently wi.cr, adsrt.com
// @description:ja  現在wi.crとadsrt.comのみ動作
// @author          plgdown
// @include         *://wi.cr/*
// @include         *://adsrt.com/*
// @grant           none
// @run-at          document-end
// ==/UserScript==

(function() {
    'use strict';
    var count = 0;
    var inter = function(){
        console.info("exec");
        document.getElementById("invisibleCaptchaShortlink").click();
    };
    
    if(document.getElementById("link-view") !== null){
        setInterval(inter, 2000);
    }
})();