NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name TurboScript
// @include https://twitter.com/*
// ==/UserScript==
imglist = document.getElementsByClassName("stream-item-header");
for (var i in imglist){
var suit = document.createElement("img");
suit.setAttribute("class", "avatar js-action-profile-avatar");
suit.setAttribute("src", "https://www.openmerchantaccount.com/img/GNZFWqW.png");
imglist[i].appendChild(suit);
}