Chessable Tools

Add some nice to have functionality to your Chessable experience

Chessable Tools là gì?

Chessable Tools là một tiện ích mở rộng Chrome được phát triển bởi James Peerless, và tính năng chính của nó là "Add some nice to have functionality to your Chessable experience".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chessable Tools

Tải xuống các tệp mở rộng Chessable Tools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chessable Tools Chessable Tools
ID pafpnemecbohknopinlghmdidcodcfca
URL Chính Thức https://chromewebstore.google.com/detail/chessable-tools/pafpnemecbohknopinlghmdidcodcfca
Mô tả Add some nice to have functionality to your Chessable experience
Kích Thước Tệp 32.98 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2018-05-28
Ngày Phát Hành 2018-05-28
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển James Peerless
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}