🏠 Home 

Voxiom.io More vox gems? doesnt work but its cool

Cool pop-up with vox gems it doesnt work but its cool for fake youtube videos


Install this script?
  1. // ==UserScript==
  2. // @name Voxiom.io More vox gems? doesnt work but its cool
  3. // @namespace http://tampermonkey.net/
  4. // @version 3.1
  5. // @description Cool pop-up with vox gems it doesnt work but its cool for fake youtube videos
  6. // @author Tomask4
  7. // @match https://voxiom.io/*
  8. // @icon www.google.com/s2/favicons?domain=voxiom.io
  9. // @grant none
  10. // @license none
  11. // ==/UserScript==
  12. document.addEventListener("DOMContentLoaded", function () {
  13. function handleEnterKeyPress(event) {
  14. if (event.keyCode === 13 || event.which === 13) {
  15. event.preventDefault();
  16. var YorN = prompt("Do you want more vox gems? Yes or No. Don't forget the capital Y and N");
  17. alert("Your answer: " + YorN);
  18. if (YorN === "Yes") {
  19. var Howmuch = prompt("How many?");
  20. alert("Added " + Howmuch + " vox gems to your inventory");
  21. } else if (YorN === "No") {
  22. alert("Okay. Sending you to voxiom.....");
  23. } else {
  24. alert("Invalid response. Please enter 'Yes' or 'No'.");
  25. }
  26. }
  27. }
  28. document.addEventListener("keypress", handleEnterKeyPress);
  29. });