GMail Change Title

Change the GMail title and remove the unread message count!

  1. // ==UserScript==
  2. // @name GMail Change Title
  3. // @namespace http://tagansvar.eu/
  4. // @version 1.0
  5. // @description Change the GMail title and remove the unread message count!
  6. // @author Mikkel Kongsfelt
  7. // @match https://mail.google.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. function hideUnread()
  12. {
  13. document.title = 'Gmail';
  14. }
  15. var t=setInterval(hideUnread,10);