Marmalade
Chess AI, Lichess
Hvad er Marmalade?
Marmalade er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Chess AI, Lichess".
Udvidelsesskærmbilleder
Download Marmalade-udvidelses-CRX-fil
Download Marmalade-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 :)
Grundlæggende oplysninger om udvidelsen
Navn | Marmalade |
ID | gcngofmmfchabjegdjagkpdnblnbjfcp |
Officiel URL | https://chromewebstore.google.com/detail/marmalade/gcngofmmfchabjegdjagkpdnblnbjfcp |
Beskrivelse | Chess AI, Lichess |
Filstørrelse | 465 KB |
Antal Installationer | 97 |
Nuværende Version | 0.0.2 |
Senest Opdateret | 2018-02-25 |
Udgivelsesdato | 2018-02-25 |
Bedømmelse | 3.00/5 Samlet 4 Bedømmelser |
Udvikler | Unknown |
Betalingsmetode | free |
Udvidelseswebsted | https://ryan-qiyu-jiang.github.io/ |
Understøttede Sprog | 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" } } |