Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name Download YouTube Videos as MP4
// @description Adds a button that lets you download YouTube videos.
// @homepageURL https://github.com/gantt/downloadyoutube
// @author Gantt
// @version 1.8.7
// @date 2016-03-19
// @namespace http://googlesystem.blogspot.com
// @include http://www.youtube.com/*
// @include https://www.youtube.com/*
$(document).keydown( function(event) {
if (event.which === 39) {
$('.next').each(function(){
var href = $(this).attr('href');
document.location.href=href;
});
}
});