UploadHEaven

Bypasses Uploadhaven time restriction.

  1. // ==UserScript==
  2. // @name:pl UploadHEaven
  3. // @description:pl Omiń restrykcję Uploadhaven za darmo!
  4. // @name UploadHEaven
  5. // @namespace http://tampermonkey.net/
  6. // @version 1.4
  7. // @description Bypasses Uploadhaven time restriction.
  8. // @author crapbass#8715
  9. // @match https://uploadhaven.com/download/*
  10. // @icon https://www.google.com/s2/favicons?sz=64&domain=uploadhaven.com
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. // Your code here...
  18. window.addEventListener('load', function() {
  19. function inject(func) {
  20. var source = func.toString();
  21. var script = document.createElement('script');
  22. // Put parenthesis after source so that it will be invoked.
  23. script.innerHTML = "("+ source +")()";
  24. document.body.appendChild(script);
  25. }
  26. function bypass_time() {
  27. seconds = 2;
  28. }
  29. inject(bypass_time);
  30. setTimeout(() => document.querySelector("#submitFree").click(), 4000);
  31. }, false);
  32. })();