Re-direct to main game website (IOGames.space) - Updated for 2025

Re-directs games from iogames.space to their main website.

// ==UserScript==
// @name         Re-direct to main game website (IOGames.space) - Updated for 2025
// @version      2.2.0
// @description  Re-directs games from iogames.space to their main website.
// @author       TigerYT
// @match        *://iogames.space/*
// @icon         https://iogames.space/images/app/favicon-48.png
// @grant        none
// @run-at       context-menu
// @namespace    https://gf.qytechs.cn/users/137913
// ==/UserScript==

document.querySelector(".GamePlayer__Overlay .GamePlayer__Overlay button")?.click();

const observer = new MutationObserver(() => {
  const button = document.querySelector(".GamePlayer__Overlay .GamePlayer__Overlay button");
  if (button) button.click();

  const objectElement = document.getElementsByTagName('object')[0];
  if (objectElement && objectElement.data) window.location.replace(objectElement.data);
});

observer.observe(document.body, {
  childList: true,
  subtree: true
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址