⚡ XenoxModder's J2E Bypass

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

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 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);
  }

  
})();