/*
* @title hatena sendpoint
* @description はてダ、はてブのページからポイント送信ページへ移動
* @include http://*.hatena.ne.jp
* @license MIT License
* @require
*/
(function(){
var name;
if( location.href.match( /^http:\/\/[bd]\.hatena\.ne\.jp\/(.+?)\// ) ){
name = RegExp.$1;
}else{
return;
}
location.href = "http://www.hatena.ne.jp/sendpoint?name=" + name;
})();