Photobucket Log Me In Already
By engtech
—
Last update Sep 7, 2007
—
Installed
490 times.
// 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);
}
})();