Script Summary: When you put the mouse over a link in your channel a edit link is created. Edit the include to your channel!
When you put the mouse over a link in your channel a edit link is created, so you can open in tabs.
Remember to edit the include to your channel!
I will not make a script for this, but here is a code to open lots of videos to edit:
javascript:
var a = document.getElementById("playnav-grid-uploads-scrollbox").getElementsByClassName("playnav-item-title");
var s = 140; //start video number (0-x)
var e = 60; // how many videos to open (1-x)
for each(var i in a)
{
if (s) { --s; continue; }
if (e) { --e; }
else break;
var id = i.href.match(/v=(.+)/)[1];
window.open("http://www.youtube.com/my_videos_edit?video_id=" + id );
}
void(0);



