summaryrefslogtreecommitdiffstats
path: root/twitter/deleteMyTweetLikes.js
blob: 77ac7f7c05e57d8fc18b1f3dbf9d2f716c0188f7 (plain) (blame)
1
2
3
4
5
6
7
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);