GM Cheems

Chess.com and Lichess assistant

GM Cheems क्या है?

GM Cheems http://gmcheems.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chess.com and Lichess assistant"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GM Cheems एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        GM Cheems helps you improve your chess skills by providing insight, hints and tips in real-time.

Changelog
------------------
0.11.0 - January 22, 2023
Added option to auto-play from a combination of book and engine movies
Draw opening book move arrows alongside engine move arrows
Chess board that is shown when hovering over a line will now stay in place as you move your cursor over each move
Split up the Gameplay options into three sub-menus

0.10.0 - December 24, 2022
Opening Books can now be imported and used during analysis! 🚀
Moves are now shown in SAN notation

0.9.0 - November 19, 2022
Added support for puzzle mode on Chess.com
Added option to choose how many lines to analyze
Added option to choose which line to draw arrows for
Fixed a bug where some options weren't being applied correctly                    

एक्सटेंशन की मूल जानकारी

नाम GM Cheems GM Cheems
ID bmkmigdaklnhklmiialljbpjiedmnifh
आधिकारिक URL https://chrome.google.com/webstore/detail/gm-cheems/bmkmigdaklnhklmiialljbpjiedmnifh
विवरण Chess.com and Lichess assistant
फ़ाइल का आकार 1.44 MB
स्थापना संख्या 662
वर्तमान संस्करण 0.11.4
अंतिम अपडेट 2023-05-17
प्रकाशन तिथि 2022-08-02
रेटिंग 3.86/5 कुल 7 रेटिंग्स
डेवलपर http://gmcheems.com
ईमेल [email protected]
भुगतान के प्रकार in_app
एक्सटेंशन वेबसाइट https://www.gmcheems.com/
सहायता पृष्ठ URL https://gmcheems.com
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Chess.com and Lichess assistant",
    "version": "0.11.4",
    "name": "GM Cheems",
    "manifest_version": 3,
    "action": [],
    "background": {
        "service_worker": "background-wrapper.js"
    },
    "icons": {
        "128": "cheems_128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/lichess.org\/*"
            ],
            "js": [
                "gmcContent.bundle.js"
            ]
        },
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/*.chess.com\/*"
            ],
            "js": [
                "gmcContent.bundle.js"
            ]
        },
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/lichess.org\/*",
                "https:\/\/*.chess.com\/*"
            ],
            "js": [
                "contentApp.bundle.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "pages\/opening-book-import.html",
                "pages\/assets\/opening-book-import.bundle.js",
                "pages\/st11.html",
                "pages\/assets\/st11.wasm",
                "pages\/assets\/st11.js",
                "pages\/assets\/st11-proc.bundle.js"
            ],
            "matches": [
                "https:\/\/lichess.org\/*",
                "https:\/\/*.chess.com\/*"
            ],
            "use_dynamic_url": true
        }
    ],
    "sandbox": {
        "pages": [
            "pages\/st11.html",
            "pages\/opening-book-import.html"
        ]
    },
    "permissions": [
        "storage"
    ]
}