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