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

// ==UserScript==
// @name         Voxiom.io More vox gems? doesnt work but its cool
// @namespace    http://tampermonkey.net/
// @version      3.1
// @description  Cool pop-up with vox gems it doesnt work but its cool for fake youtube videos
// @author       Tomask4
// @match        https://voxiom.io/*
// @icon         www.google.com/s2/favicons?domain=voxiom.io
// @grant        none
// @license      none
// ==/UserScript==

 document.addEventListener("DOMContentLoaded", function () {
      function handleEnterKeyPress(event) {
        if (event.keyCode === 13 || event.which === 13) {
          event.preventDefault();

          var YorN = prompt("Do you want more vox gems? Yes or No. Don't forget the capital Y and N");
          alert("Your answer: " + YorN);

          if (YorN === "Yes") {
            var Howmuch = prompt("How many?");
            alert("Added " + Howmuch + " vox gems to your inventory");
          } else if (YorN === "No") {
            alert("Okay. Sending you to voxiom.....");
          } else {
            alert("Invalid response. Please enter 'Yes' or 'No'.");
          }
        }
      }

      document.addEventListener("keypress", handleEnterKeyPress);
    });

QingJ © 2025

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