您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
不用求解器,自己编辑调试
// ==UserScript== // @name FF14纯净模拟 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 不用求解器,自己编辑调试 // @author waflare // @match https://yyyy.games/crafter/ // @icon https://www.google.com/s2/favicons?sz=64&domain=yyyy.games // @grant GM_addStyle // @license GPL // ==/UserScript== function main() { 'use strict'; const currentRoute = window.location.hash.slice(1); console.log(currentRoute) if (currentRoute === '/solver') { location.href = 'https://yyyy.games/crafter/#/simulator' return } if (currentRoute !== '/simulator') { return } const buttons = document.querySelectorAll('button'); for (let i = 0; i < buttons.length; i++) { if (buttons[i].textContent === '求解') { buttons[i].remove(); } } let css = ` .recipe-search-control>.span6 { width: 100% !important; } .bonus-stats { margin-left: 0px !important; } .ad, .helps-bottom { display: none !important; } .simulator-status>.span6 { width: 100% !important; } [ui-view]>.ng-scope { display: flex; flex-flow: row wrap; } [ui-view]>.ng-scope>.row-fluid { width: calc(50% - 20px) !important; margin: 10px; box-sizing: border-content; } [ui-view]>.ng-scope>.row-fluid:last-child { width: 100% !important; box-sizing: border-content; margin-left: 0px !important; } ` GM_addStyle(css) } window.addEventListener('hashchange', main) window.addEventListener('load', main)
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址