Chessable Tools

Add some nice to have functionality to your Chessable experience

什么是Chessable Tools?

Chessable Tools是由James Peerless开发的Chrome扩展程序,该扩展的主要功能是“Add some nice to have functionality to your Chessable experience”。

扩展截图

screenshot
screenshot

下载Chessable Tools扩展crx文件

下载Chessable Tools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}