NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Gmail view email address // @namespace https://mail.google.com/mail/* // @include https://mail.google.com/mail/* // @version 1 // @grant none // @require https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js // ==/UserScript== $(function() { window.setInterval(function() { $('.yP,.zF').each(function() { if (!$(this).attr('marvan')) { $(this).append(' <span class="y2"><'+$(this).attr('email')+'></span>').attr('marvan',1); } }); $('.yY').css('width','400px'); },2000); });