您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirects analysis from Chessable to Lichess
// ==UserScript== // @name Chessable Analysis Translator // @description Redirects analysis from Chessable to Lichess // @version 1.2 // @include https://www.chessable.com/analysis/* // @run-at document-start // @namespace https://greasyfork.org/users/766994 // ==/UserScript== const fen = window.location.pathname.slice(14, -1).replace(/U/g,"/").replace(/%20/g,"_"); const color = window.location.search.replace("o", "color") const url = "https://lichess.org/analysis/" + fen + color; window.location.replace(url);