/*
* @title Twitterユーザー ページでidtwiを開く
* @description Twitterのプロフィール ページ又は個別ツイートで、idtwiのユーザーID検索結果ページを開きます。
* @include https://twitter.com/*
* @license MIT License
* @require
*/
(function(){
if(location.href.match(/^https?:\/\/twitter\.com\/([\w]+)/)){
window.open('https://idtwi.com/search/'+RegExp.$1);
}
})();