streamango pairing - speedup

speeds up the pairing process by activating the pair button (works best with my ReCaptcha Automatizer)

  1. // ==UserScript==
  2. // @name streamango pairing - speedup
  3. // @description speeds up the pairing process by activating the pair button (works best with my ReCaptcha Automatizer)
  4. // @namespace Violentmonkey Scripts
  5. // @match https://streamango.com/pair
  6. // @grant none
  7. // @version 0.0.1.20190621153809
  8. // ==/UserScript==
  9.  
  10. var oldOnload = window.onload;
  11.  
  12. window.onload = function () {
  13.  
  14. if (typeof oldOnload == 'function') {
  15. oldOnload();
  16. }
  17. var arrComposite = document.querySelectorAll('[id*="Composite"]');
  18. for (var i = 0; i < arrComposite.length; i++)
  19. {
  20. arrComposite[i].style.display = "none";
  21. }
  22. document.getElementById("alreadyPairedAd").style.display = "none";
  23. document.getElementById("submitPair").innerHTML = "Pair";
  24. document.getElementById("submitPair").removeAttribute("disabled");
  25. }