Chess Enhancement Suite

Enhances your Chess.com experience!

Chess Enhancement Suite란 무엇입니까?

Chess Enhancement Suite은(는) raphiraede에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhances your Chess.com experience!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Chess Enhancement Suite 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Chess Enhancement Suite Chess Enhancement Suite
ID jpfehobmgoehehgfndokedhaejjjcobp
공식 URL https://chrome.google.com/webstore/detail/chess-enhancement-suite/jpfehobmgoehehgfndokedhaejjjcobp
설명 Enhances your Chess.com experience!
파일 크기 24.94 KB
설치 횟수 201
현재 버전 1.0
최근 업데이트 2019-11-16
출시 날짜 2019-11-14
평점 3.50/5 총 2 개의 평점
개발자 raphiraede
결제 유형 free
지원되는 언어 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"
    }
}