NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name MockUPhone InstantDownload // @namespace max // @include http://mockuphone.com/preview/* // @version 1 // @grant none // ==/UserScript== $(".download-link").html(""); $(".download-link").append('<a type="button" id="directdownload" class="btn"><span class="left-icon-download"></span>Download</a>'); $("#directdownload").click(function() { var link = window.location.href; var linksplit = link.split("/"); $.ajax({ type: 'POST', dataType: 'json', url: "http://mockuphone.com/api/email", data: { client_id: linksplit[4], email: "lel@lel.com" } }).done(function(data) { window.location.href = "http://mockuphone.com/mockup/" + linksplit[4] + "/mockup.zip"; }); });