Greasy Fork is available in English.

iogames.space Redirect

Redirects games from iogames.space to thier source websites

// ==UserScript==
// @name         iogames.space Redirect
// @version      1.3
// @description  Redirects games from iogames.space to thier source websites
// @author       someRandomGuy
// @match        *://iogames.space/*
// @grant        none
// @namespace https://greasyfork.org/users/117222
// ==/UserScript==
var a=document.getElementsByTagName("iframe")[0];
a && !a.src.startsWith(location.origin) && location.replace(a.src);