NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name ugly email chrome extension | icon swapper by Fire Lite // @namespace http://firelite.co // @version 0.1.1 // @description For use w/ Ugly Email Chrome/Gmail extension (uglyemail.com). Modifys the email tracked indicator icon. // @author Fire Lite // @match https://mail.google.com/mail/*/*/* // @grant GM_addStyle // @require http://code.jquery.com/jquery-latest.js // @requirezzz https://gist.github.com/raw/2625891/waitForKeyElements.js // ==/UserScript== function swap(){ $('img.email-track-icon').attr('src','http://vmt-gmbh.de/wp-content/uploads/2014/11/icon-rgb-ylw-tracking.png'); } $(document).ready(function(){ swap(); }); waitForKeyElements ('', swap());