Chess Enhancement Suite

Enhances your Chess.com experience!

What is Chess Enhancement Suite?

Chess Enhancement Suite is a Chrome extension developed by raphiraede, and its main feature is "Enhances your Chess.com experience!".

Extension Screenshots

screenshot
screenshot
screenshot

Download Chess Enhancement Suite Extension CRX File

Download Chess Enhancement Suite extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Chess Enhancement Suite Chess Enhancement Suite
ID jpfehobmgoehehgfndokedhaejjjcobp
Official URL https://chrome.google.com/webstore/detail/chess-enhancement-suite/jpfehobmgoehehgfndokedhaejjjcobp
Description Enhances your Chess.com experience!
File Size 24.94 KB
Installation Count 201
Current Version 1.0
Last Updated 2019-11-16
Publish Date 2019-11-14
Rating 3.50/5 Total 2 Ratings
Developer raphiraede
Payment Type free
Supported Languages 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"
    }
}