Chess.com Enhancement Suite

Some additional features on the chess.com website; save the puzzles you failed in puzzle rush and replay them afterwards.

Qu'est-ce que Chess.com Enhancement Suite ?

Chess.com Enhancement Suite est une extension Chrome développée par Nick Vanderhoven, et sa fonction principale est "Some additional features on the chess.com website; save the puzzles you failed in puzzle rush and replay them afterwards.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Chess.com Enhancement Suite

Téléchargez les fichiers d'extension Chess.com Enhancement Suite au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Non-official extension that aims to enhance the functionality on the already awesome Chess.com.

Currently it only allows to store puzzles in puzzle rush, so you can re-play the puzzles you failed and take a deeper look into them. By re-playing the puzzles you failed regularly, you train the patterns that you struggle with and improve on those tactics in general.

This extension is a fan-based extension and is not related to the official Chess.com website. As such, functionality can break at any time.

The suite is open-source and can be found on https://github.com/nvdh/chesscom-enhancementsuite

Quick Guide
-------------

To store puzzles:
- click on the puzzle number after you finished playing to open the puzzle
- click on the little book, under the orange button on the right to store the puzzle

To play puzzles:
- click on the pawn in the toolbar to open the menu and choose "view saved puzzles"
- choose one to play
- after you successfully completed the puzzle, you can play the next saved puzzle by pushing the orange button with the 2 arrows (only after successful completion without hints)                    

Informations de Base sur l'Extension

Nom Chess.com Enhancement Suite Chess.com Enhancement Suite
ID fjdfjoollgcoghjemknlblbhjlpnkcpi
URL Officiel https://chrome.google.com/webstore/detail/chesscom-enhancement-suit/fjdfjoollgcoghjemknlblbhjlpnkcpi
Description Some additional features on the chess.com website; save the puzzles you failed in puzzle rush and replay them afterwards.
Taille du Fichier 286 KB
Nombre d'Installations 123
Version Actuelle 1.0
Dernière Mise à Jour 2019-02-05
Date de Publication 2019-02-05
Évaluation 2.00/5 Total 2 Évaluations
Développeur Nick Vanderhoven
Type de Paiement free
URL de la Page d'Aide https://github.com/nvdh/chesscom-enhancementsuite
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chess.com Enhancement Suite",
    "description": "Some additional features on the chess.com website; save the puzzles you failed in puzzle rush and replay them afterwards.",
    "version": "1.0",
    "browser_action": {
        "default_popup": "browser_action\/chess.html",
        "default_icon": "browser_action\/icon.png"
    },
    "icons": {
        "16": "icons\/chess-icon16.png",
        "32": "icons\/chess-icon32.png",
        "48": "icons\/chess-icon48.png",
        "128": "icons\/chess-icon128.png"
    },
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "tabs"
    ],
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.chess.com\/tactics\/*",
                "https:\/\/*.chess.com\/puzzles\/*"
            ],
            "js": [
                "js\/jquery-3.3.1.min.js",
                "js\/puzzlerush.js"
            ],
            "run_at": "document_idle"
        }
    ]
}