Created
January 7, 2023 09:51
-
-
Save nabakdev/b705b19a729af7cc65fb76381465e323 to your computer and use it in GitHub Desktop.
Auto Unlike FB fanspage
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
| setInterval(() => { | |
| try { | |
| let el = document.querySelector('[aria-label="Action options"]') | |
| if (!!el) { | |
| el.click() | |
| setTimeout(() => document.querySelector('[role="menu"] > div > div > div > div > div > div > div').click(), 400) | |
| } | |
| } catch (err) { | |
| console.log(err) | |
| } | |
| }, 1000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment