Automatically request analysis when going to the analysis page.
当前为
// ==UserScript==
// @name Lichess auto analyse
// @namespace http://github.com/flugsio
// @version 0.1
// @description Automatically request analysis when going to the analysis page.
// @author flugsio
// @include /\.lichess\.org\/\w{8}(|\/white|\/black)$/
// @grant none
// ==/UserScript==
function auto_analyse() {
//var analysis_form = document.getElementsByClassName("future_game_analysis")[0];
var button = $("form.future_game_analysis button[type=submit]");
if (button) {
button.click();
}
}
auto_analyse();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址