Only move

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

Only moveとは何ですか?

Only moveはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension that plays only moves for you on popular chess gaming sites.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Only move拡張機能のCRXファイルをダウンロード

Only move拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Only move Only move
ID mbgjmmmhonnpfcflohnpogdfafelogkj
公式URL https://chromewebstore.google.com/detail/only-move/mbgjmmmhonnpfcflohnpogdfafelogkj
説明 Chrome extension that plays only moves for you on popular chess gaming sites.
ファイルサイズ 427 KB
インストール数 2,012
現在のバージョン 1.0.0
最終更新日 2020-05-20
公開日 2020-05-20
評価 3.20/5 合計 5 レビュー
開発者 Unknown
支払い方法 free
対応言語 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'"
}