XVideos Download Link Extractor

Add high resolution download link on the right of the screen. Use save as... to download the video you need.

03.11.2018 itibariyledir. En son verisyonu görün.

// ==UserScript==
// @author          Newonroad
// @name            XVideos Download Link Extractor
// @namespace       newonroad
// @description     Add high resolution download link on the right of the screen. Use save as... to download the video you need.
// @include         http*://www.xvideos.com/video*
// @version         0.0.1
// @run-at          document-start
// @grant           none
// ==/UserScript==

(function extractXVideos() {
    window.addEventListener("DOMContentLoaded", function () {
        var videoDownloadElement = document.createElement("div");
        videoDownloadElement.setAttribute("style", "position:fixed; top:50%; right:0; z-index: 10000");
        videoDownloadElement.innerHTML = '<a href="' + window.html5player.url_high + '" class="btn btn-default" target="_blank" download="' + window.xv.conf.dyn.id + '.mp4"><span class="icon download"></span><span class="visible-lg-inline"> Download</span></a>';
        document.body.appendChild(videoDownloadElement);
    });
}());