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 :) 擴展基本資訊
| 名稱 | |
| ID | gcngofmmfchabjegdjagkpdnblnbjfcp |
| 官方網址 | 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"
}
} | |