Skip to content

Instantly share code, notes, and snippets.

@motebaya
Created January 17, 2023 09:53
Show Gist options
  • Save motebaya/ec17b8b507345211ac2de2c18d1a74c1 to your computer and use it in GitHub Desktop.
Save motebaya/ec17b8b507345211ac2de2c18d1a74c1 to your computer and use it in GitHub Desktop.
zippyshare tampermonkey script for click download button
// ==UserScript==
// @name dont click ads
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Mochino
// @include /^https:\/\/www\d+.zippyshare.com\/v\/\w*/
// @match *://www\d+.zippyshare.com\/v\/\w*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function () {
"use strict";
$(document).ready(function () {
window.location.href = document.getElementById("dlbutton").href;
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment