ChessablePractice

Practice Chessable positions versus Lichess

Vad är ChessablePractice?

ChessablePractice är en Chrome-tillägg utvecklad av FechtSport, och dess huvudfunktion är "Practice Chessable positions versus Lichess".

Tilläggsskärmbilder

screenshot

Ladda ner ChessablePractice-förlängningens CRX-fil

Ladda ner ChessablePractice-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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).                    

Grundläggande Information om Tillägg

Namn ChessablePractice ChessablePractice
ID nengkiedldfcnadeapalbfompahjojdc
Officiell webbadress https://chromewebstore.google.com/detail/chessablepractice/nengkiedldfcnadeapalbfompahjojdc
Beskrivning Practice Chessable positions versus Lichess
Filstorlek 19.86 KB
Antal Installationer 22
Aktuell Version 0.00.07
Senast Uppdaterad 2018-04-07
Publiceringsdatum 2018-04-07
Utvecklare FechtSport
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
}