Skip to content

Instantly share code, notes, and snippets.

@geckotang
Last active January 3, 2016 03:29
Show Gist options
  • Save geckotang/8402402 to your computer and use it in GitHub Desktop.
Save geckotang/8402402 to your computer and use it in GitHub Desktop.
アップロード済み一覧でコンソール出して以下を使うと、動画名[タブ]URLのリストを表示する。
/*
http://www.youtube.com/my_videos?o=U
*/
var result = [];
Array.prototype.slice.call(document.querySelectorAll('.vm-video-title-content.yt-uix-sessionlink')).forEach(function(node) {
result.push(node.innerText+'\t'+node.href);
});
prompt('コピーしてください',result.join('\n'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment