Chess.com Hydrated

Additional features for chess.com

什麼是Chess.com Hydrated?

Chess.com Hydrated是由kris.brethower開發的Chrome擴展程式,該擴展的主要功能是“Additional features for chess.com”。

擴展截圖

screenshot

下載Chess.com Hydrated擴展crx文件

下載Chess.com Hydrated擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension provides new methods of manually drawing arrows on the chess board to plan out your moves:

• 🔗 Hold right-click then left-click to draw arrows in chain mode. This means that the next arrow will start where the previous arrow ended.
• 🌸 Hold middle-click then left-click to draw arrows in flower mode. This means that all arrows will start from the square you middle-clicked.                    

擴展基本資訊

名稱 Chess.com Hydrated Chess.com Hydrated
ID iglihljdgnhnoahhpadanelfnkclnnda
官方網址 https://chromewebstore.google.com/detail/chesscom-hydrated/iglihljdgnhnoahhpadanelfnkclnnda
簡介 Additional features for chess.com
檔案大小 573 KB
安裝次數 52
目前版本 2023.10.16
更新時間 2023-10-16
上架時間 2023-01-10
開發者 kris.brethower
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chess.com Hydrated",
    "version": "2023.10.16",
    "manifest_version": 3,
    "description": "Additional features for chess.com",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.chess.com\/*"
            ],
            "js": [
                "content_scripts\/init.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "60": "images\/icon-60.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png"
    },
    "action": {
        "default_title": "Chess.com Hydrated",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}