您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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); } })();