Note: After saving, you have to bypass your browser's cache to see the changes. Internet Explorer: press Ctrl-F5, Mozilla: hold down Shift while clicking Reload (or press Ctrl-Shift-R), Opera/Konqueror: press F5, Safari: hold down Shift + Alt while clicking Reload, Chrome: hold down Shift while clicking Reload.
// Konfigurationsvariablen für http://de.wikipedia.org/wiki/Wikipedia:Helferlein/Navigation-Popups
popupFixDabs = true;
popupFixDabsSummary = 'BKL %s durch %s ersetzt mit Wikipedia:Helferlein/Navigation-Popups';
popupFixRedirs = true;
popupFixRedirsSummary = 'Weiterleitung »%s« durch Zielseite »%s« ersetzt mit [[Wikipedia:Helferlein/Navigation-Popups]]'
popupDelay = 3;
 
 
// neue Versionen direkt vergleichen
if( mw.config.get("wgAction") == 'history' ) addOnloadHook( function() {
	var lis = document.getElementsByTagName("li");
	var updated;
	for (var i = 0; i< lis.length; i++) { 
		if ( lis[i].getAttribute("class") &&
		     lis[i].getAttribute("class").match(/\bmw-history-line-updated\b/) ) {
			updated = i;
		}; 
	};
	if ( updated < lis.length ) {
		lis[updated + 1].getElementsByTagName("input")[0].checked = true;
		document.querySelector("[value='Gewählte Versionen vergleichen']").style.backgroundColor = "#0f0";
	} else {
		document.querySelector("[value='Gewählte Versionen vergleichen']").style.backgroundColor = "#00f";
	};
});