Chess Move Say

Reads chess move names aloud after moves are played.

Chess Move Sayとは何ですか?

Chess Move SayはAdvait Shindeによって開発されたChromeの拡張機能で、その主な機能は「Reads chess move names aloud after moves are played.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Chess Move Say
==============

Chess Move Say will read aloud chess moves played on Lichess.org.

Chess Move Say is open source. Please contribute at:
https://gitlab.com/advait3000/chess-move-say                    

拡張機能の基本情報

名前 Chess Move Say Chess Move Say
ID bffngaamkkngdgfojfpahbhmfodpbbho
公式URL https://chrome.google.com/webstore/detail/chess-move-say/bffngaamkkngdgfojfpahbhmfodpbbho
説明 Reads chess move names aloud after moves are played.
ファイルサイズ 1.73 MB
インストール数 165
現在のバージョン 1.0
最終更新日 2019-11-22
公開日 2019-11-22
評価 4.00/5 合計 1 レビュー
開発者 Advait Shinde
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://gitlab.com/advait3000/chess-move-say
ヘルプページのURL https://gitlab.com/advait3000/chess-move-say/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Reads chess move names aloud after moves are played.",
    "version": "1.0",
    "name": "Chess Move Say",
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": false
    },
    "icons": {
        "32": "icon-32.png",
        "64": "icon-64.png",
        "128": "icon-128.png",
        "256": "icon-256.png",
        "512": "icon-512.png"
    },
    "browser_action": {
        "default_icon": {
            "32": "icon-32.png",
            "64": "icon-64.png",
            "128": "icon-128.png",
            "256": "icon-256.png",
            "512": "icon-512.png"
        }
    },
    "permissions": [
        "declarativeContent",
        "storage",
        "https:\/\/lichess.org\/*"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/lichess.org\/*"
            ],
            "run_at": "document_end",
            "js": [
                "cs.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "direct_script.bundle.js",
        "*.wav"
    ]
}