// ==UserScript== // @name ZippyShare // @namespace yanagiragi // @include http://*.zippyshare.com/v/*/file.html // @include https://*.zippyshare.com/v/*/file.html // @version 1.1 // @grant none // @description Download Without Ads // @downloadURL https://update.greasyfork.icu/scripts/27823/ZippyShare.user.js // @updateURL https://update.greasyfork.icu/scripts/27823/ZippyShare.meta.js // ==/UserScript== // if error occurs with closing windows, try config firefox by accessing about:config var set; (function() { 'use strict'; var dl = document.getElementById('dlbutton'); dl = dl.getAttribute('href'); location.replace(dl); // start download set = setInterval(closeWindows, 1000 * 3); })(); function closeWindows(){ window.close(); clearInterval(set); }