Chess Assistant
Chess Assistant provides chess hints and analysis on chess.com
Chess Assistantとは何ですか?
Chess AssistantはBranimir Klarićによって開発されたChromeの拡張機能で、その主な機能は「Chess Assistant provides chess hints and analysis on chess.com」です。
拡張機能のスクリーンショット
Chess Assistant拡張機能のCRXファイルをダウンロード
Chess Assistant拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Features:
✓ Show attackers for each square
✓ Highlight losing and winning trades
✓ Preview your next move
✓ Visualize entire attack lines
Works on all chess.com boards, including live games, bot games, puzzles and more.
Comes with a free 30-day trial. Receive unlimited access for a one-time payment.
Feel free to leave any feedback you might have, I would be happy to hear it. 拡張機能の基本情報
| 名前 | |
| ID | gpgnadojeplpnonnckfbpfpedoinfcln |
| 公式URL | https://chromewebstore.google.com/detail/chess-assistant/gpgnadojeplpnonnckfbpfpedoinfcln |
| 説明 | Chess Assistant provides chess hints and analysis on chess.com |
| ファイルサイズ | 153 KB |
| インストール数 | 517 |
| 現在のバージョン | 0.2.1 |
| 最終更新日 | 2023-09-29 |
| 公開日 | 2023-07-10 |
| 評価 | 1.00/5 合計 1 レビュー |
| 開発者 | Branimir Klarić |
| Eメール | [email protected] |
| 支払い方法 | in_app |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Chess Assistant",
"description": "Chess Assistant provides chess hints and analysis on chess.com",
"version": "0.2.1",
"icons": {
"192": "icon.png"
},
"action": {
"default_icon": {
"192": "icon.png"
},
"default_title": "Chess Assistant"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/*.chess.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.chess.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
}
} | |