ChessVanced

Free Game Review for Chess.com and Lichess

ChessVanced là gì?

ChessVanced là một tiện ích mở rộng Chrome được phát triển bởi urosmijajlovic43, và tính năng chính của nó là "Free Game Review for Chess.com and Lichess".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng ChessVanced 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

                        ChessVanced is a tool for free game review of chess games, while you play your game on Chess.com or Lichess, the extension will analyze the game in the background, and after the game is finished you may press "Free Game Review" button to be prompted to chessvanced.com where you will view your game review                    

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

Tên ChessVanced ChessVanced
ID ammcjghngpnnpibfnojlnmeghcmcgdib
URL Chính Thức https://chromewebstore.google.com/detail/chessvanced/ammcjghngpnnpibfnojlnmeghcmcgdib
Mô tả Free Game Review for Chess.com and Lichess
Kích Thước Tệp 222 KB
Số Lần Cài Đặt 5,095
Phiên Bản Hiện Tại 3.0.0
Cập Nhật Lần Cuối 2023-09-19
Ngày Phát Hành 2023-08-31
Đánh Giá 3.88/5 Tổng số 8 Đánh Giá
Nhà Phát Triển urosmijajlovic43
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://chessvanced.com/
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChessVanced",
    "version": "3.0.0",
    "description": "Free Game Review for Chess.com and Lichess",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "host_permissions": [
        "*:\/\/*.chess.com\/*",
        "*:\/\/*.lichess.org\/*",
        "*:\/\/*.chessvanced.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "contentScript.js"
            ],
            "matches": [
                "*:\/\/*.chess.com\/*",
                "*:\/\/*.lichess.org\/*",
                "*:\/\/*.chessvanced.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.chess.com\/*",
                "*:\/\/*.lichess.org\/*",
                "*:\/\/*.chessvanced.com\/*"
            ],
            "js": [
                "contentScriptWrapper.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "type": "module",
        "service_worker": "backgroundScript.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "permissions": [
        "storage",
        "tabs",
        "offscreen"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.chess.com\/*",
            "*:\/\/*.lichess.org\/*",
            "*:\/\/*.chessvanced.com\/*"
        ]
    }
}