Dungeon Alchemist

Dungeon Alchemist

Items
2 Comments
PILGRIM 30 Aug, 2024 @ 9:08pm 
to subscribe all: open in browser the list > open dev console(F12) > execute next script and wait a bit:
// Select all <a> tags with class "general_btn subscribe" but not "toggled"
let elements = document.querySelectorAll('a.general_btn.subscribe:not(.toggled)');

// Function to click each element with a delay
function clickElementsWithDelay(elements, delay) {
elements.forEach((element, index) => {
setTimeout(() => {
element.click();
}, index * delay);
});
}

// Click each element with 100ms delay
clickElementsWithDelay(elements, 100);
Seletharon 2 Apr, 2024 @ 9:41am 
Why is the "subscribe to all" button missing from this collection?