Chess.com Hydrated

Additional features for chess.com

Chess.com Hydrated là gì?

Chess.com Hydrated là một tiện ích mở rộng Chrome được phát triển bởi kris.brethower, và tính năng chính của nó là "Additional features for chess.com".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chess.com Hydrated

Tải xuống các tệp mở rộng Chess.com Hydrated dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chess.com Hydrated Chess.com Hydrated
ID iglihljdgnhnoahhpadanelfnkclnnda
URL Chính Thức https://chromewebstore.google.com/detail/chesscom-hydrated/iglihljdgnhnoahhpadanelfnkclnnda
Mô tả Additional features for chess.com
Kích Thước Tệp 573 KB
Số Lần Cài Đặt 52
Phiên Bản Hiện Tại 2023.10.16
Cập Nhật Lần Cuối 2023-10-16
Ngày Phát Hành 2023-01-10
Nhà Phát Triển kris.brethower
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}