Skip to content

Instantly share code, notes, and snippets.

@nabakdev
Created January 7, 2023 09:51
Show Gist options
  • Select an option

  • Save nabakdev/b705b19a729af7cc65fb76381465e323 to your computer and use it in GitHub Desktop.

Select an option

Save nabakdev/b705b19a729af7cc65fb76381465e323 to your computer and use it in GitHub Desktop.
Auto Unlike FB fanspage
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