/*
* @title <-NicoSeigaDetail
* @description ニコニコ静画の画像単体ページから静画画面へ移動する。
* @include http://lohas.nicoseiga.jp/*
* @license MIT License
* @require
*/
var l = location.href;
if(l.match(/^http:\/\/lohas\.nicoseiga\.jp\/priv\/(\d+)[^?]?/)) {
window.location = 'http://seiga.nicovideo.jp/seiga/im' + RegExp.$1;
}