/*
* @title InstagramからInstagyに移動
* @description Instagramの個人ページからInstagyの個人ページに移動します。
* @include http://*
* @license MIT License
* @require
*/
(function(){
if(location.href.match(/^https?:\/\/(www\.)?instagram\.com\/([\.\w]+)/)){
location.href='http://instagy.com/user/'+RegExp.$2;
}
else if(location.href.match(/^https?:\/\/instagy\.com\/user\/([\.\w]+)/)){
location.href='http://instagram.com/'+RegExp.$1+'/';
}
})();