No Yahoo Home on Yahoo Mail signout

By Prez Last update May 6, 2009 — Installed 934 times. Daily Installs: 2, 1, 2, 1, 3, 4, 0, 2, 1, 3, 0, 2, 3, 1, 3, 5, 2, 4, 3, 0, 2, 2, 3, 4, 0, 1, 3, 2, 0, 2, 5, 3

There are 1 previous version of this script.

// ==UserScript==
// @name           No Yahoo Home on Yahoo Mail signout
// @description    Stops Yahoo Mail from redirecting you to Yahoo home page when you sign out
// @include        http://*.*.mail.yahoo.com/*
// ==/UserScript==


for (var i = 0; i < document.links.length; i++) {
  if (document.links[i].innerHTML == 'Sign Out') {
    document.links[i].setAttribute ('href', 'http://login.yahoo.com/config/login?logout=1&.src=ym&.intl=us&.direct=2&.done=http://mail.yahoo.com'); break;
  }
}

document.getElementById("_test_sign_out").setAttribute ('onclick', 'location.href = \"http://login.yahoo.com/config/login?logout=1&.src=cdgm&.intl=us&.direct=2&.done=http://mail.yahoo.com\"');