Decrease click at Zippyshare

none

As of 26/03/2017. See the latest version.

// ==UserScript==
// @name                  Decrease click at Zippyshare
// @name:ja-JP            Zippyshareで楽をするためのスクリプト
// @namespace             http://hogehoge/
// @version               1.2
// @description           none
// @description:ja-JP     多分これが一番楽だと思います
// @author                H. Amami
// @match                 *://*.zippyshare.com/v/*
// @grant                 none
// @run-at                document-end
// ==/UserScript==

(function() {
    'use strict';
    var a = document.getElementById("dlbutton");
    location.href = a.href;
})();