Lichess Live Analysis Engine
Adds live analysis board for post-mortem analysis.
Lichess Live Analysis Engine क्या है?
Lichess Live Analysis Engine Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds live analysis board for post-mortem analysis."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Lichess Live Analysis Engine एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
आधिकारिक URL | 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 } |