Opening Chooser

Based on the first few chess moves, chooses a random opening for you to play

什么是Opening Chooser?

Opening Chooser是由usama8800开发的Chrome扩展程序,该扩展的主要功能是“Based on the first few chess moves, chooses a random opening for you to play”。

扩展截图

screenshot
screenshot

下载Opening Chooser扩展crx文件

下载Opening Chooser扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Recommend a random opening based on current position. Currently works on lichess.org
You need to be signed in or have board coordinates on for the extension to know what color you are. Otherwise it assumes white.

Should help learn chess instead of playing the same opening every game and just memorizing moves                    

扩展基本信息

名称 Opening Chooser Opening Chooser
ID jflaiafkhoeaioflgdfflipkbnhmngie
官方URL https://chromewebstore.google.com/detail/opening-chooser/jflaiafkhoeaioflgdfflipkbnhmngie
简介 Based on the first few chess moves, chooses a random opening for you to play
文件大小 130 KB
安装次数 289
当前版本 1.0
更新时间 2021-01-26
上架时间 2021-01-26
评分 3.00/5 共4次评分
开发者 usama8800
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Opening Chooser",
    "version": "1.0",
    "description": "Based on the first few chess moves, chooses a random opening for you to play",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/lichess.org\/*"
            ],
            "css": [
                "lichess.org.css"
            ],
            "js": [
                "chess.js",
                "eco.js",
                "jquery.min.js",
                "lichess.org.js"
            ]
        }
    ]
}