Free Chess Analysis
Analyze your chess.com games on lichess for free.
Free Chess Analysisとは何ですか?
Free Chess Analysisはimlokeshによって開発されたChromeの拡張機能で、その主な機能は「Analyze your chess.com games on lichess for free.」です。
拡張機能のスクリーンショット
Free Chess Analysis拡張機能のCRXファイルをダウンロード
Free Chess Analysis拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This chrome extension will help you analyze your chess.com games on lichess. Just click the icon in your extension bar when you're on a chess.com game and a new lichess tab will open with your game.
How It Works:
- User clicks the extension icon when on a page like `chess.com/game/live/*`
- The extension gets the pgn from chess.com share option.
- The extension creates a new tab with url `lichess.org/paste` and imports your game.
- The extension will automatically turn on local analysis and flip the board if you were black.
Suggestions
I welcome suggestions and bug reports. Please open an issue on github if you would like to suggest something. 拡張機能の基本情報
| 名前 | |
| ID | fkakfklkhmjkkehkjchemdgeoldekdml |
| 公式URL | https://chromewebstore.google.com/detail/free-chess-analysis/fkakfklkhmjkkehkjchemdgeoldekdml |
| 説明 | Analyze your chess.com games on lichess for free. |
| ファイルサイズ | 290 KB |
| インストール数 | 1,766 |
| 現在のバージョン | 0.0.5 |
| 最終更新日 | 2024-02-20 |
| 公開日 | 2023-03-07 |
| 評価 | 5.00/5 合計 7 レビュー |
| 開発者 | imlokesh |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/imlokesh/free-chess-analysis |
| ヘルプページのURL | https://github.com/imlokesh/free-chess-analysis |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Free Chess Analysis",
"description": "Analyze your chess.com games on lichess for free. ",
"version": "0.0.5",
"icons": {
"64": "img\/64.png",
"128": "img\/128.png",
"512": "img\/512.png"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"declarativeContent",
"activeTab",
"scripting"
],
"host_permissions": [
"https:\/\/www.chess.com\/*",
"https:\/\/lichess.org\/*"
],
"action": {
"default_title": "Analyze on Lichess",
"default_icon": {
"16": "img\/16.png",
"32": "img\/32.png",
"48": "img\/48.png",
"64": "img\/64.png",
"128": "img\/128.png",
"512": "img\/512.png"
}
}
} | |