Kickasstraffic

Go to https://anon.to/VGgPPZ - enter yout bitcoin adress, complete captcha and the bot starts

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

Advertisement:

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

Advertisement:

// ==UserScript==
// @name         Kickasstraffic
// @icon         https://kickasstraffic.com/assets/img/favicon.ico
// @namespace    https://helpercoins.blogspot.com/
// @version      1
// @description  Go to https://anon.to/VGgPPZ - enter yout bitcoin adress, complete captcha and the bot starts
// @author       Helpercoins.blogspot.com
// @match        http://kickasstraffic.com/surf
// ==/UserScript==

(function() {
    'use strict';
    if($(".btn.btn-danger:contains('Close')").length === 1)
        $(".btn.btn-danger:contains('Close')")[0].click();
    if($("#captchaSelector").length === 1) {
        $("#captchaSelector").focus();

        setInterval( function(){
            var el =  $('#adcopy_response');
            if(el.length > -1) {
                setTimeout( function() {
                    $('#adcopy_response').focus();
                }, 2000);
            }
        }, 1000);
    }

    setInterval( function() {
        var time = parseInt($('#counter').text().split(' ')[2]);
        setInterval( function() {
            if(time === 0)
                $(".btn.btn-primary.btn-block:contains('Next Website')")[0].click();
        }, 1000);
    }, 1000);

})();