blob: c31b9ee79d2e613509af724e67cf543da195e30a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
function remove_liked_tweets() {
document.querySelectorAll('div.tweet-context').forEach(function (el) {
if (el.innerText.endsWith('others liked')) {
var tweet = el.parentNode.parentNode;
var button = tweet.querySelector('button[data-feedback-type="DontLike"]');
button.click();
var permalink = tweet.getAttribute('data-permalink-path');
console.log('Removed liked tweet ' + permalink);
}
});
}
setInterval(remove_liked_tweets, 5000);
|