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”。

扩展截图

screenshot
screenshot
screenshot

下载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.                    

扩展基本信息

名称 Chess Assistant Chess Assistant
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ć
电子邮箱 [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
    }
}