Created
January 17, 2023 09:53
-
-
Save motebaya/ec17b8b507345211ac2de2c18d1a74c1 to your computer and use it in GitHub Desktop.
zippyshare tampermonkey script for click download button
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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