Olpair.com Automatizer

Works only with ReCaptcha Automatizer! Pairs automatically as long as no suspicious traffic was registered. Leave the page open and you will allwas stay paired.

  1. // ==UserScript==
  2. // @name Olpair.com Automatizer
  3. // @description Works only with ReCaptcha Automatizer! Pairs automatically as long as no suspicious traffic was registered. Leave the page open and you will allwas stay paired.
  4. // @namespace Violentmonkey Scripts
  5. // @match https://olpair.com/
  6. // @grant none
  7. // @version 0.0.1.20190418103333
  8. // ==/UserScript==
  9.  
  10. function Sleep(milliseconds) {
  11. return new Promise(resolve => setTimeout(resolve, milliseconds));
  12. }
  13.  
  14. async function Click() {
  15. await Sleep(6000); // Pausiert die Funktion für X Millisekunden
  16. parent.document.getElementById('submitPair').click();
  17. console.log("zweiter Klick");
  18. await Sleep(14400000); // Pausiert die Funktion für X Millisekunden
  19. history.go(0);
  20. }
  21.  
  22. var oldOnload = window.onload;
  23.  
  24. window.onload = function () {
  25.  
  26. if (typeof oldOnload == 'function') {
  27. oldOnload();
  28. }
  29. Click();
  30. }