uhdmovies - Auto Bypass Timer and Click Start Verification

Automatically click "Start Verification" after the 10-second timer finishes or button appears

  1. // ==UserScript==
  2. // @name uhdmovies - Auto Bypass Timer and Click Start Verification
  3. // @namespace http://tampermonkey.net/
  4. // @author Hasan-Abbas
  5. // @version 0.1
  6. // @description Automatically click "Start Verification" after the 10-second timer finishes or button appears
  7. // @match https://*.unblockedgames.*/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function () {
  12. 'use strict';
  13.  
  14. function clickStartVerificationButton() {
  15. let startVerificationButton = document.querySelector('a[onclick="document.getElementById(\'landing\').submit();"]');
  16. if (startVerificationButton) {
  17. startVerificationButton.click();
  18. }
  19. }
  20.  
  21. const observer = new MutationObserver((mutationsList, observer) => {
  22. for (const mutation of mutationsList) {
  23. if (mutation.type === 'childList') {
  24. const startVerificationButton = document.querySelector('a[onclick="document.getElementById(\'landing\').submit();"]');
  25. if (startVerificationButton) {
  26. clickStartVerificationButton();
  27. observer.disconnect();
  28. }
  29. }
  30. }
  31. });
  32.  
  33. observer.observe(document.body, { childList: true, subtree: true });
  34.  
  35. setTimeout(clickStartVerificationButton, 100);
  36. })();
  37.  
  38.  
  39. // ==UserScript==
  40. // @name Auto Bypass Timer and Click Buttons (For 3rd URL - tech.unblockedgames.world)
  41. // @namespace http://tampermonkey.net/
  42. // @version 0.1
  43. // @description Automates clicking buttons and handling delays between each step for 3rd URL
  44. // @match https://tech.unblockedgames.world/*
  45. // @grant none
  46. // ==/UserScript==
  47.  
  48. (function () {
  49. 'use strict';
  50.  
  51. function clickVerifyButton() {
  52. let verifyButton = document.getElementById('verify_button2');
  53. if (verifyButton) {
  54. verifyButton.click();
  55. }
  56. }
  57.  
  58. function clickContinueButton() {
  59. let continueButton = document.getElementById('verify_button');
  60. if (continueButton) {
  61. continueButton.click();
  62. }
  63. }
  64.  
  65. function scrollToDownloadButton() {
  66. window.scrollTo(0, document.body.scrollHeight);
  67. }
  68.  
  69. function clickDownloadButton() {
  70. let downloadButton = document.getElementById('two_steps_btn');
  71. if (downloadButton) {
  72. downloadButton.click();
  73. }
  74. }
  75.  
  76. setTimeout(() => {
  77. clickVerifyButton();
  78. }, 20);
  79.  
  80.  
  81. setTimeout(() => {
  82. }, 7);
  83.  
  84.  
  85. setTimeout(() => {
  86. clickContinueButton();
  87. }, 10);
  88.  
  89.  
  90. setTimeout(() => {
  91. scrollToDownloadButton();
  92. }, 20);
  93.  
  94.  
  95. setTimeout(() => {
  96. clickDownloadButton();
  97. }, 4000);
  98. })();