Skip to content

Instantly share code, notes, and snippets.

@tomtobac
Created January 31, 2025 22:22
Show Gist options
  • Save tomtobac/0590e9f883c6160f65e84fdd7fe1ee78 to your computer and use it in GitHub Desktop.
Save tomtobac/0590e9f883c6160f65e84fdd7fe1ee78 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Reborn Vote
// @namespace HighSociety
// @version 2024-04-16
// @description Remove disable button class to vote earlier
// @author Nymphadora
// @match l2reborn.org/reborn-shop/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=l2reborn.org
// @grant none
// ==/UserScript==
(async function() {
while(true) {
await new Promise(resolve => setTimeout(resolve, 1000));
const btn = document.querySelector('.voted_btn')
btn.classList.remove('disabled')
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment