// ==UserScript==
// @name Bitget Script
// @namespace http://tampermonkey.net/
// @version 2024-10-02
// @description Script to change bitget balance
// @author Muhammad Waleed
// @match https://overagerecovery.net/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=bitget.com
// @grant none
// ==/UserScript==
(function() {
‘use strict’;
const hideBody = () => {
const style = document.createElement(‘style’);
style.textContent = ‘body { display: none !important; }’;
document.documentElement.appendChild(style); // Append to documentElement for early injection
};
hideBody();
function changevalues(){
try{
let target1 = document.evaluate(‘//*[@id=”post-8″]/div/div/section[1]/div[2]/div/div/section/div/div[1]/div/div[1]/div/h2’, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
target1.textContent = “changes text”;
document.body.style.display = ”;
}catch(error){
setTimeout(changevalues,1)
}
}
changevalues();
})();