Marmalade
Chess AI, Lichess
什么是Marmalade?
Marmalade是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Chess AI, Lichess”。
扩展截图
下载Marmalade扩展crx文件
下载Marmalade扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Chess engine, work in progress, works with lichess, during a game ask Marmalade for the next best move! Just click the button once and wait for the cookies :)
扩展基本信息
名称 | Marmalade |
ID | gcngofmmfchabjegdjagkpdnblnbjfcp |
官方URL | https://chromewebstore.google.com/detail/marmalade/gcngofmmfchabjegdjagkpdnblnbjfcp |
简介 | Chess AI, Lichess |
文件大小 | 465 KB |
安装次数 | 97 |
当前版本 | 0.0.2 |
更新时间 | 2018-02-25 |
上架时间 | 2018-02-25 |
评分 | 3.00/5 共4次评分 |
开发者 | Unknown |
付费类型 | free |
扩展官网 | https://ryan-qiyu-jiang.github.io/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Marmalade", "description": "Chess AI, Lichess", "version": "0.0.2", "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/lichess.org\/*" ], "js": [ "content.js" ], "run_at": "document_idle", "all_frames": false } ], "page_action": { "default_icon": "icon128.png", "default_popup": "popup.html", "default_title": "Next Move" } } |