Primedice 10 min (Autoclaim)

Claims bonus on stake every 10 minutes

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         Primedice 10 min (Autoclaim)
// @description  Claims bonus on stake every 10 minutes
// @description  only works in chrome and you need this addon for chrome
// @author       Dauersendung
// @namespace    https://greatest.deepsurf.us/de/users/444902-dauersendung
// @version      3.0
// @match        https://primedice.com/*
// @match        https://primedice.com
// @grant        none
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==
var count_min = 1;
window.onload = function loadpage(){
console.log(document.readyState);

setInterval(function(){
      window.location.assign("?currency=btc&modal=vipReload");
}, random(580000,580010));

setInterval(function(){
       document.getElementsByClassName("Button__StyledButton-sc-8bd3dp-0 gRHihC")[0].click();
}, random(15000,20000));

setInterval(function(){
        console.log("Status: Elapsed time " + count_min + " minutes");
        count_min = count_min + 1;
}, 60000);

};


function random(min,max){
   return min + (max - min) * Math.random();
}