⚡ XenoxModder's J2E Bypass

🔥 Bypass ALL countdown timers & skip buttons instantly! Works On Just2Earn Sites.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         ⚡ XenoxModder's J2E Bypass
// @namespace    https://t.me/XenoxFF7
// @version      1.0.0
// @description  🔥 Bypass ALL countdown timers & skip buttons instantly! Works On Just2Earn Sites.
// @author       XenoxModder
// @match        *://biharkhabar.net/*
// @match        *://updateclasses.in/*
// @match        *://echoloom.xyz/*
// @match        *://punjabworker.com/*
// @match        *://newkhabar24.com/*
// @match        *://insurance.odiadance.com/*
// @match        *://goodmorningimg.com/*
// @match        *://go.just2earn.com/*
// @grant        none
// @license      MIT
// @homepageURL  https://greasyfork.org/en/users/1527358-xenox-modder
// @supportURL   https://t.me/XenoxFF2
// ==/UserScript==

(function () {
  'use strict';

  
  if (window.skipTimerProLoaded) return;
  window.skipTimerProLoaded = true;

  const host = location.hostname;


  if (
    [
      'biharkhabar.net',
      'updateclasses.in',
      'echoloom.xyz',
      'punjabworker.com',
      'newkhabar24.com',
      'insurance.odiadance.com',
      'goodmorningimg.com'
    ].includes(host)
  ) {
    const interval = setInterval(() => {
      const button = document.querySelector('center a button#tp-snp2') ||
        [...document.querySelectorAll('center a button')].find(
          b => /continue|countinue|skip|get link/i.test(b.innerText)
        );
      const href = button?.closest('a')?.href;
      if (href) {
        clearInterval(interval);
        location.href = href;
      }
    }, 100);
  }


  if (host === 'go.just2earn.com') {
    const interval = setInterval(() => {
      const timer = document.querySelector('#timer');
      const button = document.querySelector('.get-link');
      if (timer && button && !button.classList.contains('disabled')) {
        const time = parseInt(timer.innerText) || -1;
        if (time <= 0) {
          clearInterval(interval);
          button.click();
        }
      }
    }, 250);
  }

  
})();