Created
November 11, 2021 16:48
-
-
Save koumaza/98d994c4e1573c67e47ab6edaf697b0d to your computer and use it in GitHub Desktop.
This file contains 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
const a = () => { | |
if (document.querySelector(`div[data-testid="unlike"]`)) { | |
window.scroll(0,999999999999); | |
[...document.querySelectorAll(`div[data-testid="unlike"]`)].map(e=>e.click()) | |
a() | |
} else location.reload() | |
} | |
a() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment