New Userscript

É um script de usar no ab60ac47cf

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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);

})();