Bypass Button Countdowns

Bypasses the button countdown on various video sites, skips pointless ones a goes straight to acutal video host.

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

  1. // ==UserScript==
  2. // @name Bypass Button Countdowns
  3. // @namespace http://www.diamonddownload.weebly.com
  4. // @version 1.1
  5. // @description Bypasses the button countdown on various video sites, skips pointless ones a goes straight to acutal video host.
  6. // @include *gorillavid.in/*
  7. // @include *daclips.in/*
  8. // @include *movpod.in/*
  9. // @include *watchtvseries.to/open/cale/*
  10. // @include *watchseries.lt/open/cale/*
  11. // @copyright 2014+, RGSoftware
  12. // @run-at document-body
  13. // @author R.F Geraci
  14. // @icon64 http://icons.iconarchive.com/icons/oxygen-icons.org/oxygen/64/Apps-clock-icon.png
  15. // ==/UserScript==
  16.  
  17. window.onload = function(){
  18. var skip = document.getElementsByClassName('push_button blue')[0];
  19. if (skip != undefined){
  20. window.location.href = skip.href;
  21. }
  22.  
  23. var skip1 = document.getElementsByClassName('myButton')[0];
  24. if (skip1 != undefined){
  25. window.location.href = skip1.href;
  26. }
  27.  
  28. var btn = document.getElementById('btn_download');
  29. if (btn != undefined){
  30. btn.disabled = null;
  31. setInterval(function(){btn.value = "Proceed";}, 0.0000001);
  32. }
  33.  
  34. };