ChessVanced
Free Game Review for Chess.com and Lichess
ChessVancedとは何ですか?
ChessVancedはurosmijajlovic43によって開発されたChromeの拡張機能で、その主な機能は「Free Game Review for Chess.com and Lichess」です。
拡張機能のスクリーンショット
ChessVanced拡張機能のCRXファイルをダウンロード
ChessVanced拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
ChessVanced is a tool for free game review of chess games, while you play your game on Chess.com or Lichess, the extension will analyze the game in the background, and after the game is finished you may press "Free Game Review" button to be prompted to chessvanced.com where you will view your game review
拡張機能の基本情報
名前 | ChessVanced |
ID | ammcjghngpnnpibfnojlnmeghcmcgdib |
公式URL | https://chromewebstore.google.com/detail/chessvanced/ammcjghngpnnpibfnojlnmeghcmcgdib |
説明 | Free Game Review for Chess.com and Lichess |
ファイルサイズ | 222 KB |
インストール数 | 5,095 |
現在のバージョン | 3.0.0 |
最終更新日 | 2023-09-19 |
公開日 | 2023-08-31 |
評価 | 3.88/5 合計 8 レビュー |
開発者 | urosmijajlovic43 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://chessvanced.com/ |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChessVanced", "version": "3.0.0", "description": "Free Game Review for Chess.com and Lichess", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "host_permissions": [ "*:\/\/*.chess.com\/*", "*:\/\/*.lichess.org\/*", "*:\/\/*.chessvanced.com\/*" ], "web_accessible_resources": [ { "resources": [ "contentScript.js" ], "matches": [ "*:\/\/*.chess.com\/*", "*:\/\/*.lichess.org\/*", "*:\/\/*.chessvanced.com\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/*.chess.com\/*", "*:\/\/*.lichess.org\/*", "*:\/\/*.chessvanced.com\/*" ], "js": [ "contentScriptWrapper.js" ], "run_at": "document_start" } ], "background": { "type": "module", "service_worker": "backgroundScript.js" }, "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'" }, "permissions": [ "storage", "tabs", "offscreen" ], "externally_connectable": { "matches": [ "*:\/\/*.chess.com\/*", "*:\/\/*.lichess.org\/*", "*:\/\/*.chessvanced.com\/*" ] } } |