YouTube Download

On youtube press F2 to download the current video.

Από την 13/04/2015. Δείτε την τελευταία έκδοση.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         YouTube Download
// @namespace    http://your.homepage/
// @version      2.4
// @description  On youtube press F2 to download the current video.
// @author       Henry Harris
// @match        https://www.youtube.com/*
// @match        http://catchvideo.net/*
// @grant        none
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js
// @run-at document-end
// ==/UserScript==





$(document).ready ( function(){
// -----------------------Runs on YOUTUBE--------------------------------------------------------------	   
	if(window.location.href.indexOf("you") > -1) {
        if ($('#section-list').length > 0) {
    		alert('Press F2 while watching a video to download it.');
    	}
	}
// --------------------------RUNS ON KEEPVID TO DOWNLOAD VIDEO--------------------------------------------    
    if(window.location.href.indexOf("catch") > -1) {
    //var iDiv = document.createElement('div');

        //iDiv.id = 'block';
        //iDiv.className = 'block';
        //document.getElementsByTagName('body')[0].appendChild(iDiv);
        //iDiv.height = window.height();
        //iDiv.width = window.width();
        //$( "#block" ).css("height", "100%");
        //$( "#block" ).css("width", "100%");
        //$( "#block" ).css("z-index", "100");
        //$( "#block" ).css("position", "fixed");
        if(!$('#javaUserWarning').is(':visible')) {
            
            
     //document.getElementById("checkboxDisableJava1").checked = true;
        
    //var url = document.URL;
	//var hash = url.substring(url.indexOf('?')+1);
        
   // var textbox = document.getElementById("home_search_q");
    
   // textbox.value = hash; 
    
    //$('#home_search_submit').click();
    
    setTimeout(function(){
    
    //$("#grab1").click();
    
        //var href = $( "a span:first-child" ).attr('href');
        //var firstspan = $('a.btn green:first');
        //var href = $( "#firstspan" ).attr('href');
        var els = document.getElementsByClassName('btn green');
        //alert("JS: " + els[0].innerHTML); // hello1
        var href = els[0].href
        
        window.location = href
        
        
        
        setTimeout(function(){
    
            window.close();
    
            
       }, 2000);
    }, 14000);

        
            } else {
                alert("Please check disable java applet and retry.");
        }
}
});

// -----------------------Runs on YOUTUBE--------------------------------------------------------------
$(document).keydown(function (e) {
    if (e.keyCode == 113) {
        //window.open("http://keepvid.com/?url=" + document.URL)
        
        var a = document.createElement("a");
    a.href = "http://catchvideo.net/?url=" + document.URL;
    var evt = document.createEvent("MouseEvents");    
    evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, true, false, false, false, 0, null);
    a.dispatchEvent(evt);
    }
});