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);
- });