// ==UserScript==
// @name Auronox Manual Submit Helper
// @namespace https://quasarcrypto.xyz/
// @version 1.1
// @description Autofill next email, wait for manual submit and reload
// @match https://auronoxai.com/whitelist
// @grant none
// ==/UserScript==
(function() {
'use strict';
const emails = [
"example@gmail.com","example1@gmail.com","example2@gmail.com",
// ... add your emails here ...
];
// Get current index or start at 0
let index = parseInt(localStorage.getItem("auronox_email_index") || "0");
if (index >= emails.length) {
alert("✅ All emails processed!");
return;
}
// Autofill the email input
const input = document.querySelector('input[type="email"]');
if (!input) {
console.error("Email input not found");
return;
}
input.value = emails[index];
input.dispatchEvent(new Event("input", { bubbles: true }));
// Increment index and save for next page load
index++;
localStorage.setItem("auronox_email_index", index);
console.log("✅ Autofilled email:", emails[index-1]);
})();



评论 (0)