Chessable Tools

Add some nice to have functionality to your Chessable experience

¿Qué es Chessable Tools?

Chessable Tools es una extensión de Chrome desarrollada por James Peerless, y su función principal es "Add some nice to have functionality to your Chessable experience".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Chessable Tools

Descarga archivos de extensión Chessable Tools en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Were you excited as I was about the Chessable feature to limit the move depth when learning new openings? As a beginner there's no need to learn openings 15 moves out because our opponents will most likely go out of book within the first handful of moves.  After adjusting the move depth to a more reasonable level I quickly learned that many of the variations in a given book were identical given my limited move depth.  This means I was stuck learning and reviewing the same opening variation over and over.  This extension will allow you to automatically collapse + pause variations that are identical given your current move depth.                    

Información Básica de la Extensión

Nombre Chessable Tools Chessable Tools
ID pafpnemecbohknopinlghmdidcodcfca
URL Oficial https://chromewebstore.google.com/detail/chessable-tools/pafpnemecbohknopinlghmdidcodcfca
Descripción Add some nice to have functionality to your Chessable experience
Tamaño del Archivo 32.98 KB
Cantidad de Instalaciones 20
Versión Actual 1.0.0
Última Actualización 2018-05-28
Fecha de Publicación 2018-05-28
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador James Peerless
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chessable Tools",
    "description": "Add some nice to have functionality to your Chessable experience",
    "version": "1.0.0",
    "author": "James Peerless",
    "icons": {
        "16": "icons\/icon16.png",
        "24": "icons\/icon24.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    },
    "page_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png",
            "256": "icons\/icon256.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.chessable.com\/*"
            ],
            "css": [
                "chessable.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "chessable.js"
    ],
    "permissions": [
        "activeTab",
        "declarativeContent"
    ]
}