//Hide retweets
(function t() {
setTimeout(function () {
$(".tweet[data-name!='NAME']").hide();
t();
}, 1000);
})()
@mistersql NB, you have to set the NAME to the name of the current profile. E.g. Matthew Martin
♡ 0 ↻ 0
May 23, 2016
//Hide retweets
(function t() {
setTimeout(function () {
$(".tweet[data-name!='NAME']").hide();
t();
}, 1000);
})()
@mistersql NB, you have to set the NAME to the name of the current profile. E.g. Matthew Martin