Infinite Coins

change the amount of your coins to troll other people!

  1. // ==UserScript==
  2. // @name Infinite Coins
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1
  5. // @description change the amount of your coins to troll other people!
  6. // @author Turbo
  7. // @match https://agma.io/
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=agma.io
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. var ischecked = false;
  15. var checkbox = document.createElement('input');
  16. checkbox.type = 'checkbox';
  17. checkbox.id = 'myCheckbox';
  18. checkbox.name = 'myCheckbox';
  19. var label = document.createElement('label');
  20. label.textContent = 'Press to get infinite coins!';
  21. label.setAttribute('for', 'myCheckbox');
  22. var settingTab3 = document.getElementById('userSettings');
  23. settingTab3.appendChild(checkbox);
  24. settingTab3.appendChild(label);
  25. checkbox.addEventListener('change', function() {
  26. if (checkbox.checked) {
  27. console.log('Checkbox is checked. Set to true.');
  28. ischecked = true;
  29. var coinPrompt = window.prompt("How much coins do u want?\n Type a number below")
  30. var coinPromptNum = coinPrompt.value
  31. document.getElementById("coinsDash").textContent = coinPrompt;
  32. document.getElementById("coins").textContent = coinPrompt
  33. curserMsg(`Coins Applied!`, 'green')
  34. } else {
  35. console.log('Checkbox is not checked. Set to false.');
  36. ischecked = false;
  37. curserMsg(`Check the box again to change coins`, 'red')
  38. }
  39. });
  40. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址