Skip to content

Instantly share code, notes, and snippets.

@belst-n
Created July 16, 2024 05:17
Show Gist options
  • Save belst-n/45240a4f408ca32cf5c6cf8461e0db50 to your computer and use it in GitHub Desktop.
Save belst-n/45240a4f408ca32cf5c6cf8461e0db50 to your computer and use it in GitHub Desktop.
Quick script to iterate over all hidden users on Civitai.com and remove them.
function clickAndWait(index) {
const elements = document.querySelectorAll('.mantine-Group-root.mantine-1u5ck20 button.mantine-UnstyledButton-root.mantine-ActionIcon-root.mantine-1nf78q7');
if (index >= elements.length) return;
elements[index].click();
setTimeout(() => clickAndWait(index + 1), 1000);
}
clickAndWait(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment