Lichess coord helper

Overlay co-ordinates on each square on lichess.com

What is Lichess coord helper?

Lichess coord helper is a Chrome extension developed by darajava, and its main feature is "Overlay co-ordinates on each square on lichess.com".

Extension Screenshots

screenshot

Download Lichess coord helper Extension CRX File

Download Lichess coord helper 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

                        Fill out coordinates on lichess.org to get more familiar with them.                    

Extension Basic Information

Name Lichess coord helper Lichess coord helper
ID phjjblkcjghdlejdkcibenepiehehpbj
Official URL https://chromewebstore.google.com/detail/lichess-coord-helper/phjjblkcjghdlejdkcibenepiehehpbj
Description Overlay co-ordinates on each square on lichess.com
File Size 100 KB
Installation Count 38
Current Version 1.05
Last Updated 2019-01-22
Publish Date 2019-01-22
Rating 3.33/5 Total 3 Ratings
Developer darajava
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lichess coord helper",
    "short_name": "Lichess coords",
    "description": "Overlay co-ordinates on each square on lichess.com",
    "version": "1.05",
    "author": "Dara Javaherian",
    "permissions": [
        "*:\/\/*.lichess.org\/*"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "bg\/background.js"
        ]
    },
    "icons": {
        "128": "icons\/youtube-128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/lichess.org\/*",
                "http:\/\/lichess.org\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/inject.js"
            ],
            "css": [
                "styles\/styles.css"
            ]
        }
    ]
}