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
function getPercentage() { | |
const span = [...document.querySelectorAll('span')].find(el => | |
el.textContent.includes('%') | |
); | |
if (!span) return null; | |
const text = span.textContent.trim().replace('%', ''); | |
const value = parseInt(text, 10); | |
return isNaN(value) ? null : value; | |
} |
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 Bestiary Auto Battle | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Inicia automaticamente a batalha no Bestiary Arena quando disponível | |
// @match https://bestiaryarena.com/* | |
// @grant none | |
// ==/UserScript== | |
(function () { |