/*
* @title YouTubeをリピート再生する
* @description YouTubeの動画をYouTube Repeat!で開いてリピート再生します。
* @include http://*
* @license public domain
* @require
*/
(function()
{
var uri = location.href;
if (uri)
{
window.open(uri.replace('youtube', 'youtuberepeat'));
}
})();