Chessable Tools

Add some nice to have functionality to your Chessable experience

Chessable Tools क्या है?

Chessable Tools James Peerless द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add some nice to have functionality to your Chessable experience"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Chessable Tools एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Chessable Tools Chessable Tools
ID pafpnemecbohknopinlghmdidcodcfca
आधिकारिक URL https://chromewebstore.google.com/detail/chessable-tools/pafpnemecbohknopinlghmdidcodcfca
विवरण Add some nice to have functionality to your Chessable experience
फ़ाइल का आकार 32.98 KB
स्थापना संख्या 20
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2018-05-28
प्रकाशन तिथि 2018-05-28
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर James Peerless
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}