New Userscript

É um script de usar no ab60ac47cf

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.5
// @description  É um script de usar no ab60ac47cf
// @author       You
// @match        https://freebitco.in/
// @icon         https://www.google.com/s2/favicons?domain=freebitco.in
// @grant        none
// ==/UserScript==


(function() {
    'use strict';

var meuIP = "-";

var xmlhttp = new XMLHttpRequest();
  xmlhttp.open("GET", 'https://ipinfo.io/json');
  xmlhttp.send();
  xmlhttp.onload = function(e) {
    //alert("Seu IP é: "+JSON.parse(xmlhttp.response).ip);
      meuIP = JSON.parse(xmlhttp.response).ip;
  }


setInterval(function(){
    if(document.getElementsByClassName("h-captcha")[0].innerHTML.length > 2000){
        document.getElementById("free_play_form_button").click();

	setInterval(function(){
		if(document.getElementById("free_play_error").innerText.includes(" IP ")){
			document.getElementsByTagName("title")[0].innerText = "erroIP"+
            " ("+document.getElementsByClassName("balanceli")[0].innerText.replace(" BTC","")+");"+meuIP;

		}else if(document.getElementById("free_play_result").innerText.includes("You win 0.")){
			document.getElementsByTagName("title")[0].innerText = "GG!" +
            document.getElementById("free_play_result").innerText.split(',')[0].replace("You win ","").replace(" BTC","") +
		    " ("+document.getElementsByClassName("balanceli")[0].innerText.replace(" BTC","")+");"+meuIP;

        }
	},100);

    }
},25000);

})();