Decrease click at Zippyshare

none

目前为 2017-03-26 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Decrease click at Zippyshare
  3. // @name:JA-JP Zippyshareで楽をするためのスクリプト
  4. // @namespace http://hogehoge/
  5. // @version 1.2
  6. // @description none
  7. // @description:JA-JP 多分これが一番楽だと思います
  8. // @author H. Amami
  9. // @match *://*.zippyshare.com/v/*
  10. // @grant none
  11. // @run-at document-end
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. var a = document.getElementById("dlbutton");
  17. location.href = a.href;
  18. })();