Enlarge Twitter Profile Image

By cxx Last update Feb 27, 2009 — Installed 156 times. Daily Installs: 0, 1, 0, 0, 0, 0, 4, 1, 2, 0, 3, 1, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 2, 0

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';
		}
	}
}