// ==UserScript==
// @name		gamerLinkReset
// @description		轉換巴哈姆特開新視窗連結為普通連結
// @include		http://forum*.gamer.com.tw/G2.php*
// @include		http://forum*.gamer.com.tw/C.php*
// ==/UserScript==
(function() {
	D = document;
	var gamerLinkReset = function() {
		var a = D.getElementsByTagName('A'),
			re = /.*"([^"]*)"\)/g;

		for(i=0; tag=a[i]; i++) {
			var url = tag.getAttribute('href');
			if (/confirmLink/.test(url)) {
				var r = url.replace(re, "$1");
				r = decodeURIComponent(r);
				tag.setAttribute('href', r);
			}
		}
	}
	window.addEventListener("load", gamerLinkReset, false);
})();

