Sleazy Fork is available in English.

XVideos Download Link Extractor

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

Versione datata 20/06/2019. Vedi la nuova versione l'ultima versione.

// ==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.2
// @run-at          document-start
// @grant           none
// ==/UserScript==

(function extractXVideos() {
    window.addEventListener("DOMContentLoaded", function () {
        var videoDownloadElement = document.createElement("a");
        videoDownloadElement.setAttribute("href", window.html5player.url_high);
        videoDownloadElement.setAttribute("target", "_blank");
        videoDownloadElement.setAttribute("class", "btn btn-default visible-lg-inline-block");
        videoDownloadElement.setAttribute("download", window.xv.conf.dyn.id + ".mp4");
        videoDownloadElement.setAttribute("id", "watch-later-video");
        videoDownloadElement.innerHTML = '<span class="icon download"></span> Download';
        document.querySelector("#video-actions").appendChild(videoDownloadElement);
    });
}());