Lichess Live Analysis Engine
Adds live analysis board for post-mortem analysis.
什麼是Lichess Live Analysis Engine?
Lichess Live Analysis Engine是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Adds live analysis board for post-mortem analysis.”。
擴展截圖
下載Lichess Live Analysis Engine擴展crx文件
下載Lichess Live Analysis Engine擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This Chrome extension will allow you to perform live chess engine analysis of your chess positions after the game. It has been created to compliment the chess evaluation on the LiChess site itself, and to cover those usage cases where the user would like to explore side lines and understand why certain moves work or don't work. In order to use this extension simply click the "Analysis Board" button on a completed game and then click this extension's button, which in the top right of the browser window. An evaluation of the current position should appear shortly in the left sidebar under "Spectator Room." Source for this extension and server available here: https://github.com/freefal67/lichess_live_engine
擴展基本資訊
名稱 | Lichess Live Analysis Engine |
ID | nbghhbfeikmnkhfbjkgcifhnkfacjdgk |
官方網址 | https://chromewebstore.google.com/detail/lichess-live-analysis-eng/nbghhbfeikmnkhfbjkgcifhnkfacjdgk |
簡介 | Adds live analysis board for post-mortem analysis. |
檔案大小 | 55.33 KB |
安裝次數 | 504 |
目前版本 | 1.0 |
更新時間 | 2015-09-16 |
上架時間 | 2015-09-16 |
評分 | 3.00/5 共 6 次評分 |
開發者 | Unknown |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Lichess Live Analysis Engine", "version": "1.0", "description": "Adds live analysis board for post-mortem analysis.", "icons": { "19": "icon-19.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.lichess.org\/*" ], "js": [ "chess.js", "jquery-2.1.4.min.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Lichess Live Analysis Engine" }, "permissions": [ "activeTab" ], "manifest_version": 2 } |