コトバノウタカタ

よしなしごとをつらつらとつづるばしょ。

YouTubeのショート動画やクリップから普通の動画に変換する

javascript: (function () {
    var m = $("meta[itemprop='videoId']");
    if (m.length > 0) {
        window.open().location.href = "https://www.youtube.com/watch?v=" + m.attr("content");
        return;
    }
    else {
        var mt = /https:\/\/www\.youtube\.com\/shorts\/(.+)/i.exec(location.href);
        if (mt != null) {
            window.open().location.href = "https://www.youtube.com/watch?v=" + mt[1];
            return;
        }
    }
    alert("Invalid page!");
    return;
})()