Marmalade

Chess AI, Lichess

What is Marmalade?

Marmalade is a Chrome extension developed by Unknown, and its main feature is "Chess AI, Lichess".

Extension Screenshots

screenshot

Download Marmalade Extension CRX File

Download Marmalade extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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 :)                    

Extension Basic Information

Name Marmalade Marmalade
ID gcngofmmfchabjegdjagkpdnblnbjfcp
Official URL https://chromewebstore.google.com/detail/marmalade/gcngofmmfchabjegdjagkpdnblnbjfcp
Description Chess AI, Lichess
File Size 465 KB
Installation Count 97
Current Version 0.0.2
Last Updated 2018-02-25
Publish Date 2018-02-25
Rating 3.00/5 Total 4 Ratings
Developer Unknown
Payment Type free
Extension Website https://ryan-qiyu-jiang.github.io/
Supported Languages 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"
    }
}