LiveLeak download

Creates a download link next to video title

2015-10-07 일자. 최신 버전을 확인하세요.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==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').click();
});