Last active
July 28, 2023 14:00
-
-
Save ImMALWARE/84405169f558e471d22dd73ae5270625 to your computer and use it in GitHub Desktop.
Фейк баланс Lolzteam
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Фейк баланс Lolzteam | |
| // @descriptio Расширение, которое дюпает ваши деньги | |
| // @author MALWARE | |
| // @homepage https://t.me/immalware/ | |
| // @include https://lolz.guru/* | |
| // @include https://zelenka.guru/* | |
| // @include https://lzt.market/* | |
| // @include https://lolz.market/* | |
| // @namespace lolzteam_fake_balance | |
| // @run-at document-end | |
| // @version 1.1 | |
| // @license MIT | |
| // @icon https://lolz.guru/favicon.ico | |
| // ==/UserScript== | |
| var balance = 1000000; | |
| var hold = 0; | |
| for (var element of document.getElementsByClassName("balanceValue")) {element.innerHTML=balance.toLocaleString('ru') } | |
| if (hold != 0) {document.getElementsByClassName("balanceValue muted")[0].innerHTML=hold.toLocaleString('ru'); document.getElementsByClassName("balanceNumber muted")[0].innerHTML=hold.toLocaleString('ru')+' <span class="svgIcon--rub muted"></span>'} | |
| else {document.getElementsByClassName("balanceValue muted")[0].style.display = "none"; document.getElementsByClassName("balanceLabel balanceSep")[0].style.display = "none"; for (var elemm of document.getElementsByClassName("svgIcon--rub muted")) {elemm.style.display = "none"}; | |
| if (window.location.href.includes('payments')) {document.getElementsByClassName("ToggleTriggerAnchor")[0].style.display = "none"}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment