ChessablePractice

Practice Chessable positions versus Lichess

¿Qué es ChessablePractice?

ChessablePractice es una extensión de Chrome desarrollada por FechtSport, y su función principal es "Practice Chessable positions versus Lichess".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión ChessablePractice

Descarga archivos de extensión ChessablePractice 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

                        Automates task of loading current position from Chessable.com variations into a new tab to practice on Lichess.com versus computer.  If activated from Chessable study mode will select first or last position in variation (specified by options setting).                    

Información Básica de la Extensión

Nombre ChessablePractice ChessablePractice
ID nengkiedldfcnadeapalbfompahjojdc
URL Oficial https://chromewebstore.google.com/detail/chessablepractice/nengkiedldfcnadeapalbfompahjojdc
Descripción Practice Chessable positions versus Lichess
Tamaño del Archivo 19.86 KB
Cantidad de Instalaciones 22
Versión Actual 0.00.07
Última Actualización 2018-04-07
Fecha de Publicación 2018-04-07
Desarrollador FechtSport
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "name": "ChessablePractice",
    "description": "Practice Chessable positions versus Lichess",
    "homepage_url": "https:\/\/www.chessable.com\/profile\/FechtSport\/",
    "version": "0.00.07",
    "manifest_version": 2,
    "background": {
        "persistent": false,
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "src\/simulate.js"
            ],
            "matches": [
                "https:\/\/www.chessable.com\/variation\/*",
                "https:\/\/*.lichess.org\/*"
            ]
        },
        {
            "js": [
                "src\/analysis.js"
            ],
            "matches": [
                "https:\/\/*.lichess.org\/*"
            ]
        },
        {
            "js": [
                "src\/dbg.js",
                "src\/parseParams.js",
                "src\/getPosition.js"
            ],
            "matches": [
                "https:\/\/www.chessable.com\/learn\/*",
                "https:\/\/www.chessable.com\/variation\/*",
                "https:\/\/www.chessable.com\/practice\/*"
            ]
        }
    ],
    "icons": {
        "16": "icons\/16x16.png",
        "19": "icons\/19x19.png",
        "38": "icons\/38x38.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "icons\/19x19.png",
            "38": "icons\/38x38.png"
        },
        "default_title": "Practice versus Lichess"
    },
    "options_ui": {
        "page": "src\/options.html",
        "chrome_style": true
    },
    "permissions": [
        "tabs",
        "webNavigation",
        "storage",
        "https:\/\/*.lichess.org\/",
        "https:\/\/www.chessable.com\/"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}