Created
March 16, 2023 14:49
-
-
Save MuttakinHasib/a6e390ce3332b3966809ca59e539b2e9 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
setInterval(() => removeFbMessage(), 3000); | |
function sleep() { | |
return new Promise((resolve) => setTimeout(resolve, 1000)); | |
} | |
const removeFbMessage = async () => { | |
document.querySelector('[aria-label="More"]').click(); | |
await sleep(); | |
document.querySelector('[aria-label="Remove message"]').click(); | |
await sleep(); | |
document.querySelector('[aria-label="Remove"]').click(); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment