﻿// ==UserScript==
// @name          m_url@mixi 
// @namespace     http://www.blurblue.com/
// @description   "http://m.mixi.jp/" is converted into "http://mixi.jp/". 
// @include       http://mixi.jp/*
// ==/UserScript==
window._content = window; // for Opera

(function() {
	var bodyArea = document.getElementById("bodyArea");
	var a = bodyArea.getElementsByTagName("a");
	for (t=0; t<a.length; t++){
		var mmixi = new RegExp("http://m.mixi.jp/");
		if (a[t].href.match(mmixi)) { 
			len = a[t].href.length;
			str = a[t].href.substring(17,len);
			a[t].href = "http://mixi.jp/" + str;
			a[t].innerHTML = "http://mixi.jp/" + str;
		}
	}
})();