GamesGX Downloader

Skip shortener to gamesgx.net

// ==UserScript==
// @name         GamesGX Downloader
// @version      0.1
// @namespace    GamesGx Downloader
// @description  Skip shortener to gamesgx.net
// @author       GrrAmd2
// @match        https://eco-area.com/*
// @match        http://eco-area.com/*

// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var entryPoint = window.location.pathname.split('/');
    if(entryPoint[1] == "go") {
        document.querySelector('.linkprotect').click();
    }else{
        var linkArchivo = document.querySelector(".botontour").children[0].text;
        var regex = new RegExp(/(http|ftp|https):\/\/([\w_-]+(?:(?:\.[\w_-]+)+))([\w.,@?^=%&:/~+#-]*[\w@?^=%&/~+#-])?/gi)

        var url = linkArchivo.match(regex)[0];
        window.open(url, "_blank");
        setTimeout(function() {
            window.close()
        }, 500);
    }
})();

QingJ © 2025

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