Skip to content

Instantly share code, notes, and snippets.

@Vlasterx
Created July 30, 2020 07:07
Show Gist options
  • Save Vlasterx/83cbb154ed35cc4b9cfd88c185bf4453 to your computer and use it in GitHub Desktop.
Save Vlasterx/83cbb154ed35cc4b9cfd88c185bf4453 to your computer and use it in GitHub Desktop.
Unlike tweets
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);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment