Decrease click at Zippyshare

none

当前为 2017-04-19 提交的版本,查看 最新版本

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