Marmalade
Chess AI, Lichess
Co to jest Marmalade?
Marmalade to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Chess AI, Lichess”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Marmalade
Pobierz pliki rozszerzeń Marmalade w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 :) Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | gcngofmmfchabjegdjagkpdnblnbjfcp |
| Oficjalny URL | https://chromewebstore.google.com/detail/marmalade/gcngofmmfchabjegdjagkpdnblnbjfcp |
| Opis | Chess AI, Lichess |
| Rozmiar pliku | 465 KB |
| Liczba instalacji | 97 |
| Aktualna Wersja | 0.0.2 |
| Ostatnia Aktualizacja | 2018-02-25 |
| Data Publikacji | 2018-02-25 |
| Ocena | 3.00/5 Łącznie 4 Oceny |
| Deweloper | Unknown |
| Typ Płatności | free |
| Strona Rozszerzenia | https://ryan-qiyu-jiang.github.io/ |
| Obsługiwane Języki | 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"
}
} | |