Software development, scripting and programming.
User avatar
!
30%
Posts: 3263
Joined: 2013-02-25 18:36

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.