Youtube -> Imgur Screenshot Helper (copy and paste into your browser console when on a video site)
var clientId = ''; // insert your imgur application client id here
var videos = document.getElementsByTagName('video'), canvas = document.createElement('canvas'), context = canvas.getContext('2d'), http = new XMLHttpRequest();
canvas.width = videos[0].videoWidth; canvas.height = videos[0].videoHeight;
context.drawImage(videos[0], 0, 0);
var data = JSON.stringify({
image: canvas.toDataURL('image/jpeg', 0.9).split(',')[1]