This question is a means of preventing automated form submissions by spambots.
What are the l a s t four characters of "ab847ae805dc98184168c1a"? You must also add "xx!1.." to the answer but type "1" as a word not a number.
Smilies
:clap: :crazy: :thumbdown: :thumbup: :wtf: :yawn: :tired: :relaxed: :grin: :smile: :wink: :sad: :eek: :shock: :???: :cool: :lol: :mad: :razz: :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :arrow: :neutral: :mrgreen: :geek: :ugeek: :eh: :lolno: :problem: :shh: :shifty: :sick: :silent: :think: :wave:
   

If you wish to attach one or more files enter the details below.

How to delete all likes in Twitter / X

!, 2023-09-04 23:20 »

I found it here in the comments section: https://www.alphr.com/delete-all-twitter-likes/

Code: Select all

setInterval(function(){
var divs = document.getElementsByTagName("div")
var arr = Array.prototype.slice.call( divs)
var hearts = arr.filter(x => x.getAttribute("data-testid") == "unlike")
hearts.forEach(h => h.click())
window.scrollTo(0, document.body.scrollHeight ||document.documentElement.scrollHeight);
},1000);
Worked for in Vivaldi. Just open your likes page on Twitter and paste the code in developer tools console. It worked super quick, just a minute to remove tens of thousands! I temporarily disabled loading images in site settings so it would be faster.

Top