Sleazy Fork is available in English.

LiveLeak download

Creates a download link next to video title

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

// ==UserScript==
// @name         LiveLeak download
// @version      1
// @description  Creates a download link next to video title
// @author       Mark Lin
// @match        http://www.liveleak.com/view?i=*
// @grant        none
// @require      https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @namespace https://greasyfork.org/users/17419
// ==/UserScript==

$(document).ready(function () {
    var title = $('title').text() + '.mp4';
    var url = $('script[type="text/javascript"]').filter((i, ele) => ele.innerHTML.indexOf("file:") > -1 ? true : false)[0].innerHTML.match(/\".*\"/g)[1].slice(1, -1);

    $('<a href="'+ url +'" download="'+ title +'">Download File</a>').insertAfter('.section_title:first');
});