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
官方網址 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
    }
}