iogames.space Redirect

Redirects games from iogames.space to thier source websites

当前为 2017-06-02 提交的版本,查看 最新版本

// ==UserScript==
// @name         iogames.space Redirect
// @version      1
// @description  Redirects games from iogames.space to thier source websites
// @author       someRandomGuy
// @match        http://iogames.space/*
// @grant        none
// @namespace https://greasyfork.org/users/117222
// ==/UserScript==
function $(a){
    return document.getElementById(a);
}

if($('gameFrame'))(function() {
	location.replace($('gameFrame').src);
})();