EDIT 2: Esta é agora uma extensão do Chrome, veja aqui .
postagem original abaixo
Bit de um fraco front-end hack, mas você pode colar o seguinte javascript no console do navegador e remover as fotos do perfil. Código no github também
(function(){
$(".tweet-avatar.avatar.pull-right").remove();
$(".tweet").css({ "padding-left" : "5px" });
})();
EDIT: o código acima irá remover as fotos do perfil, mas novos tweets são carregados com uma foto.
Abaixo, o código reexecuta automaticamente o fragmento remove()
acima quando novos tweets entram no feed:
var s_ajaxListener = new Object();
s_ajaxListener.tempOpen = XMLHttpRequest.prototype.open;
s_ajaxListener.tempSend = XMLHttpRequest.prototype.send;
s_ajaxListener.callback = function() {
// runs on XHR events
// to remove profile pics
$(".tweet-avatar.avatar.pull-right").remove();
$(".tweet").css({ "padding-left": "5px" });
}
XMLHttpRequest.prototype.open = function(a, b) {
if (!a) var a = '';
if (!b) var b = '';
s_ajaxListener.tempOpen.apply(this, arguments);
s_ajaxListener.method = a;
s_ajaxListener.url = b;
if (a.toLowerCase() == 'get') {
s_ajaxListener.data = b.split('?');
s_ajaxListener.data = s_ajaxListener.data[1];
}
}
XMLHttpRequest.prototype.send = function(a, b) {
if (!a) var a = '';
if (!b) var b = '';
s_ajaxListener.tempSend.apply(this, arguments);
if (s_ajaxListener.method.toLowerCase() == 'post') s_ajaxListener.data = a;
s_ajaxListener.callback();
}