Last active
January 3, 2016 03:29
-
-
Save geckotang/8402402 to your computer and use it in GitHub Desktop.
アップロード済み一覧でコンソール出して以下を使うと、動画名[タブ]URLのリストを表示する。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| 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