Chess Enhancement Suite

Enhances your Chess.com experience!

Hvad er Chess Enhancement Suite?

Chess Enhancement Suite er en Chrome-udvidelse udviklet af raphiraede, og dens hovedfunktion er "Enhances your Chess.com experience!".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Chess Enhancement Suite-udvidelses-CRX-fil

Download Chess Enhancement Suite-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Chess Enhancement Suite Chess Enhancement Suite
ID jpfehobmgoehehgfndokedhaejjjcobp
Officiel URL https://chrome.google.com/webstore/detail/chess-enhancement-suite/jpfehobmgoehehgfndokedhaejjjcobp
Beskrivelse Enhances your Chess.com experience!
Filstørrelse 24.94 KB
Antal Installationer 201
Nuværende Version 1.0
Senest Opdateret 2019-11-16
Udgivelsesdato 2019-11-14
Bedømmelse 3.50/5 Samlet 2 Bedømmelser
Udvikler raphiraede
Betalingsmetode free
Understøttede Sprog 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"
    }
}