Bypass Button Countdowns

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

  1. // ==UserScript==
  2. // @name Bypass Button Countdowns
  3. // @namespace http://www.diamonddownload.weebly.com
  4. // @version 1.2.1
  5. // @description Bypasses the button countdown on various video sites, skips pointless ones and goes straight to actual 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. // @include *watchseries.ag/open/cale/*
  12. // @include *vodu.ch/file/*
  13. // @copyright 2014+, RGSoftware
  14. // @run-at document-body
  15. // @author R.F Geraci
  16. // @icon64 http://icons.iconarchive.com/icons/oxygen-icons.org/oxygen/64/Apps-clock-icon.png
  17. // ==/UserScript==
  18.  
  19.  
  20.  
  21. function SkipClass(objClass){
  22. var className = document.getElementsByClassName(objClass)[0];
  23. if (className != undefined){
  24. // window.location.href = className.href;
  25. className.click();
  26. }
  27. }
  28.  
  29. function SkipId(objId){
  30. var oId = document.getElementById(objId);
  31. if (oId != undefined){
  32. oId.disabled = null;
  33. //window.location.href = oId.href;
  34. //oId.value = "Proceed";
  35. oId.click();
  36. }
  37. }
  38.  
  39. window.onload = function(){
  40. SkipClass('push_button blue');
  41. SkipClass('myButton');
  42. SkipId('submitButton');
  43. SkipId('btn_download');
  44. };