Only move

Chrome extension that plays only moves for you on popular chess gaming sites.

Only move là gì?

Only move là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Chrome extension that plays only moves for you on popular chess gaming sites.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Only move 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

                        OnlyMove can save you time in critical online games.
I often find myself when premoving, and my opponent makes me check which leads to losing very important seconds.
With OnlyMove you simply install the chrome extension and it detects when you can make only move and it makes it for you.                    

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

Tên Only move Only move
ID mbgjmmmhonnpfcflohnpogdfafelogkj
URL Chính Thức https://chromewebstore.google.com/detail/only-move/mbgjmmmhonnpfcflohnpogdfafelogkj
Mô tả Chrome extension that plays only moves for you on popular chess gaming sites.
Kích Thước Tệp 427 KB
Số Lần Cài Đặt 2,012
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-05-20
Ngày Phát Hành 2020-05-20
Đánh Giá 3.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Chrome extension that plays only moves for you on popular chess gaming sites.",
    "version": "1.0.0",
    "name": "Only move",
    "manifest_version": 2,
    "options_page": "options.html",
    "background": {
        "persistent": false,
        "scripts": [
            "background.bundle.js"
        ]
    },
    "permissions": [
        "storage",
        "declarativeContent",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/lichess.org\/*",
                "https:\/\/www.chess.com\/*"
            ],
            "js": [
                "inject.bundle.js",
                "stockfish.js",
                "stockfish.asm.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        }
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}