Bypass Button Countdowns

Bypasses the button countdown on various video sites

当前为 2014-08-07 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Bypass Button Countdowns
  3. // @namespace http://www.diamonddownload.weebly.com
  4. // @version 1.0
  5. // @description Bypasses the button countdown on various video sites
  6. // @include *gorillavid.in/*
  7. // @include *daclips.in/*
  8. // @include *movpod.in/*
  9. // @copyright 2014+, RGSoftware
  10. // @run-at document-body
  11. // @author R.F Geraci
  12. // ==/UserScript==
  13.  
  14. var btn = document.getElementById('btn_download');
  15. btn.disabled = null;
  16. setInterval(function(){btn.value = "Proceed";}, 0.000000001);