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