Skip to content

Instantly share code, notes, and snippets.

@iniznet
Created December 5, 2021 23:35
Show Gist options
  • Save iniznet/60a76d5686417f519ed44d7904bb0dec to your computer and use it in GitHub Desktop.
Save iniznet/60a76d5686417f519ed44d7904bb0dec to your computer and use it in GitHub Desktop.
Zippyshare Auto Download
// ==UserScript==
// @name Zippyshare Auto Download
// @namespace https://github.com/iniznet/
// @version 1.0.0
// @description Automatically starts downloads hosted by Zippyshare
// @author niznet
// @match *zippyshare.com/*
// @icon https://www.google.com/s2/favicons?domain=zippyshare.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementById('dlbutton').click();
//window.setTimeout( function() { window.close(); }, 3000); // Uncomment this if you want to tab automatically close after click
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment