您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Opens FC levels in the desktop app
// ==UserScript== // @name FC Companion to the Companion // @namespace kmcgurty.com // @version 1 // @description Opens FC levels in the desktop app // @author Kmcgurty // @match http://fantasticcontraption.com/?designId=* // @match http://fantasticcontraption.com/?levelId=* // @connect localhost // @grant GM_xmlhttpRequest // ==/UserScript== let uri = document.querySelector("footer div:nth-child(3) a").href; let id = uri.split(":")[1]; let url = `http://localhost:58889/launch?id=${encodeURIComponent(id)}`; console.log("url:" + url); GM_xmlhttpRequest({ method: "GET", url: url, onload: function(response) { console.log(response); close(); }, onerror: function(error){ console.log(error) } });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址