AVR Freaks print view to topic view

By MoJo-chan Last update May 31, 2008 — Installed 19 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           AVR Freaks print view to topic view
// @namespace      http://world3.net
// @description    Automatically move from print view to topic view
// @include        http://www.avrfreaks.net/
// ==/UserScript==

s = location.href;
if (s.search("printview") != -1)
{
	s = s.replace(/printview/g,"viewtopic");
//	alert(s);
	location.replace(s);
}