Photobucket Log Me In Already

By engtech Last update Sep 7, 2007 — Installed 644 times. Daily Installs: 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0
// Log me the !@#$ in already.

// ==UserScript==
// @name           Photobucket Log Me In Already
// @namespace      http://InternetDuctTape.com
// @description    Takes you directly to your album if you visit http://photobucket.com while already logged in.
// @include        http://photobucket.com/
// ==/UserScript==


(function() {
  var welcome = document.getElementById("welcomeUser");
  if (welcome) {
    location.replace(welcome.href);
  }
 })();