Skip to content

Instantly share code, notes, and snippets.

@Brendan-33
Brendan-33 / unlike-tweets-in-google-chrome-dev-tools.js
Last active May 22, 2023 21:48
Script to Unlike Tweets On Twitter In Google Chrome
javascript:
var tweetsUnliked = 0;
for (let i = 0; i < 100; i++) {
var unlikeButton = $("div[data-testid='unlike']");
window.scrollBy(0, 10000);
if (unlikeButton === null) { console.log("The next liked tweet was not found, please scroll down and run the script again.");}
else { console.log("Found Tweet to Unlike")}