NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Gmail Hide Last Hangout Message // @namespace https://openuserjs.org // @description Hide last chat message in docked hangout in GMail // @author Sergio Nalin // @include https://hangouts.google.com/* // @run-at document-start // @version 0.2 // ==/UserScript== (function() { document.querySelector('head').innerHTML += '<style type="text/css">.ng { display: none !important};</style>'; })();