// ==UserScript== // @name 9GAG Video Download Button // @namespace http://tampermonkey.net/ // @version 0.2 // @description Provides a download button for 9gag detail view. // @author Ragnar Lengson // @match https://9gag.com/gag/* // @grant GM.setValue // @downloadURL https://update.greasyfork.icu/scripts/404107/9GAG%20Video%20Download%20Button.user.js // @updateURL https://update.greasyfork.icu/scripts/404107/9GAG%20Video%20Download%20Button.meta.js // ==/UserScript== (function() { 'use strict'; console.log('Save video as button loaded'); if($('.post-container source[type="video/mp4"]').length == 0) { return; } var videoPost = $('.post-container source[type="video/mp4"]')[0].src; var postContainer = $('.post-container'); postContainer.append('Save video as ...'); })();