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