/*
* @title YouTube ショートを普通のページにする
* @description my bookmarklet
* @include https://www.youtube.com/shorts/*
* @license MIT License
* @javascript_url
*/
(function(){
if(!location.href.indexOf('https://www.youtube.com/shorts/')){
location.href=location.pathname.replace('/shorts/','/watch?v=');
};
})();