Marmalade
Chess AI, Lichess
Wat is Marmalade?
Marmalade is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Chess AI, Lichess".
Extensie Screenshots
Download het CRX-bestand van de extensie Marmalade
Download Marmalade-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 :) Basisinformatie over de Extensie
| Naam | |
| ID | gcngofmmfchabjegdjagkpdnblnbjfcp |
| Officiële URL | https://chromewebstore.google.com/detail/marmalade/gcngofmmfchabjegdjagkpdnblnbjfcp |
| Beschrijving | Chess AI, Lichess |
| Bestandsgrootte | 465 KB |
| Aantal Installaties | 97 |
| Huidige Versie | 0.0.2 |
| Laatst Bijgewerkt | 2018-02-25 |
| Publicatiedatum | 2018-02-25 |
| Beoordeling | 3.00/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | Unknown |
| Betalingswijze | free |
| Extensiewebsite | https://ryan-qiyu-jiang.github.io/ |
| Ondersteunde Talen | 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"
}
} | |