Digsby Full Gmail

By Seth Stevenson Last update Oct 31, 2008 — Installed 84 times. Daily Installs: 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           Digsby Full Gmail
// @namespace      http://www.imsethstevenson.com
// @description    Redirects single messages from digsby (and others) to their full view in gmail.
// @include        http://mail.google.com/mail/?*
// @include        https://mail.google.com/mail/?*
// ==/UserScript==

if (/[&?]view=cv/.test(window.location.href)) {
  var newlocation = 'https://mail.google.com/mail/#inbox/' + 
           window.location.href.match(/[?&]th=[0-9a-f]*/)[0].substr(4);
  window.location.href = newlocation;
}