Adds a movie download button to the mp4hydra.org video player. Clicking the button will start the download of the mp4 video file.
< Mp4Hydra Movie/Video Downloaderについてのフィードバック
Thanks, I will implement these changes soon. I should have tested the previous code on more browsers. Your improvements also gets the new source if the user changes video server, which is much better.
Your code isn't working, but I was able to fix it. Here is the corrected code:
// ==UserScript== // @name Mp4Hydra Movie/Video Downloader // @namespace https://greasyfork.org/ // @version 1.13 // @description Adds a movie download button to the mp4hydra.org video player. Clicking the button will start the download of the mp4 video file. // @author paleocode // @match https://mp4hydra.org/movie/* // @icon https://mp4hydra.org/favicon-32x32.png // @license MIT // @unwrap // @downloadURL https://update.greasyfork.org/scripts/484039/Mp4Hydra%20MovieVideo%20Downloader.user.js // @updateURL https://update.greasyfork.org/scripts/484039/Mp4Hydra%20MovieVideo%20Downloader.meta.js // ==/UserScript==
(function () { if (document.title === 'Movie Not Found | Mp4Hydra.org') { return; }
})();
Fixed:
hope this helps.