Mephisto Chess Extension

Next best move analysis for your favorite chess websites

Mephisto Chess Extensionとは何ですか?

Mephisto Chess ExtensionはAlpine Web Extensionsによって開発されたChromeの拡張機能で、その主な機能は「Next best move analysis for your favorite chess websites」です。

拡張機能のスクリーンショット

screenshot
screenshot

Mephisto Chess Extension拡張機能のCRXファイルをダウンロード

Mephisto Chess Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Mephisto is a browser extension that enables realtime next best move analysis and autoplay on your favorite chess websites.

Mephisto Chess Extension is the perfect tool to hone your chess skills, analyze your games and learn from your mistakes. With a click of a button, Mephisto analyzes your chess game and provides comprehensive information to elucidate the position. Mephisto is 100% free, open-source and collects zero user data.

Features:
- Full support for next best move analysis on Lichess and Chess.com
- Full support for autoplay on Lichess and Chess.com
- "Hand and Brain" training mode to help you spot the best move
- A variety of piece and board themes to pick from                    

拡張機能の基本情報

名前 Mephisto Chess Extension Mephisto Chess Extension
ID ihpdlpgcjepplokoncjelcbbcedgnanp
公式URL https://chrome.google.com/webstore/detail/mephisto-chess-extension/ihpdlpgcjepplokoncjelcbbcedgnanp
説明 Next best move analysis for your favorite chess websites
ファイルサイズ 2.06 MB
インストール数 4,021
現在のバージョン 1.0.1
最終更新日 2022-08-13
公開日 2022-08-09
評価 4.44/5 合計 9 レビュー
開発者 Alpine Web Extensions
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/AlexPetrusca/Mephisto
ヘルプページのURL https://github.com/AlexPetrusca/Mephisto/issues
プライバシーポリシーページのURL https://github.com/AlexPetrusca/Mephisto/wiki/Privacy-Policy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mephisto Chess Extension",
    "description": "Next best move analysis for your favorite chess websites",
    "version": "1.0.1",
    "homepage_url": "https:\/\/github.com\/AlexPetrusca\/Mephisto",
    "author": "Alex Petrusca",
    "icons": {
        "16": "res\/icons\/icon16.png",
        "32": "res\/icons\/icon32.png",
        "48": "res\/icons\/icon48.png",
        "128": "res\/icons\/icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "res\/icons\/icon16.png",
            "32": "res\/icons\/icon32.png",
            "48": "res\/icons\/icon48.png",
            "128": "res\/icons\/icon128.png"
        },
        "default_popup": "src\/popup\/popup.html",
        "options_page": "src\/options\/options.html"
    },
    "permissions": [
        "debugger"
    ],
    "background": {
        "service_worker": "src\/scripts\/background-script.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.chess.com\/*",
                "https:\/\/lichess.org\/*"
            ],
            "js": [
                "src\/scripts\/content-script.js"
            ]
        }
    ],
    "default_locale": "en"
}