Chess Enhancement Suite

Enhances your Chess.com experience!

Cos'è Chess Enhancement Suite?

Chess Enhancement Suite è un'estensione di Chrome sviluppata da raphiraede, e la sua funzione principale è "Enhances your Chess.com experience!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Chess Enhancement Suite

Scarica i file di estensione Chess Enhancement Suite in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Chess Enhancement Suite Chess Enhancement Suite
ID jpfehobmgoehehgfndokedhaejjjcobp
URL Ufficiale https://chrome.google.com/webstore/detail/chess-enhancement-suite/jpfehobmgoehehgfndokedhaejjjcobp
Descrizione Enhances your Chess.com experience!
Dimensione del File 24.94 KB
Conteggio Installazioni 201
Versione Corrente 1.0
Ultimo Aggiornamento 2019-11-16
Data di Pubblicazione 2019-11-14
Valutazione 3.50/5 Totale 2 Valutazioni
Sviluppatore raphiraede
Tipo di Pagamento free
Lingue Supportate 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"
    }
}