Chess Enhancement Suite

Enhances your Chess.com experience!

Chess Enhancement Suite là gì?

Chess Enhancement Suite là một tiện ích mở rộng Chrome được phát triển bởi raphiraede, và tính năng chính của nó là "Enhances your Chess.com experience!".

Ả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 Chess Enhancement Suite

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

                        Don't pay for the Chess.com Premium subscription, simply download Chess Enhancement Suite! Chess Enhancement Suite automatically records data about your chess games in real time, allowing you to analyze your past games with Stockfish, the worlds strongest chess engine!

Chess Enhancement Suite also allows you to analyze your current board state during a live game of chess! With the power of Stockfish at your fingertips, you can't be beat!



Check out the code here:

https://github.com/Raphiraede/Chess-Enhancement-Suite                    

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

Tên Chess Enhancement Suite Chess Enhancement Suite
ID jpfehobmgoehehgfndokedhaejjjcobp
URL Chính Thức https://chrome.google.com/webstore/detail/chess-enhancement-suite/jpfehobmgoehehgfndokedhaejjjcobp
Mô tả Enhances your Chess.com experience!
Kích Thước Tệp 24.94 KB
Số Lần Cài Đặt 201
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-11-16
Ngày Phát Hành 2019-11-14
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển raphiraede
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 Enhancement Suite",
    "version": "1.0",
    "description": "Enhances your Chess.com experience!",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/ChessEnhancementSuiteIcon16.png",
            "32": "images\/ChessEnhancementSuiteIcon32.png",
            "48": "images\/ChessEnhancementSuiteIcon48.png",
            "128": "images\/ChessEnhancementSuiteIcon128.png"
        }
    },
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "https:\/\/lichess.org\/paste"
    ],
    "background": {
        "scripts": [
            "PGNconverter.js",
            "lichessOpener.js",
            "controller.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.chess.com\/live*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/ChessEnhancementSuiteIcon16.png",
        "32": "images\/ChessEnhancementSuiteIcon32.png",
        "48": "images\/ChessEnhancementSuiteIcon48.png",
        "128": "images\/ChessEnhancementSuiteIcon128.png"
    }
}