Decrease click at Zippyshare

none

  1. // ==UserScript==
  2. // @name Decrease click at Zippyshare
  3. // @name:ja Zippyshareで楽をするためのスクリプト
  4. // @namespace http://hogehoge/
  5. // @version 1.*
  6. // @description none
  7. // @description:ja 多分これが一番楽だと思います
  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. if (a !== null) {
  18. location.href = a.href;
  19. }
  20. })();