Decrease click at Zippyshare

none

目前為 2017-04-19 提交的版本,檢視 最新版本

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

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