There are 1 previous version of this script.
// ==UserScript==
// @name Enlarge Twitter Profile Image
// @namespace http://twitter.com/cxx
// @include http://twitter.com/*
// @include https://twitter.com/*
// @include http://explore.twitter.com/*
// @version 0.0.2.20090228
// ==/UserScript==
var img = document.getElementById('profile-image');
if (img) {
with (img) {
src = src.replace(/_bigger(\.\w+)$/, '$1');
with (style) {
width = height = 'auto';
minWidth = minHeight = '73px';
}
}
}
