Created
January 31, 2025 22:22
-
-
Save tomtobac/0590e9f883c6160f65e84fdd7fe1ee78 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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