Chess.com Hydrated

Additional features for chess.com

O que é Chess.com Hydrated?

Chess.com Hydrated é uma extensão do Chrome desenvolvida por kris.brethower, e sua principal característica é "Additional features for chess.com".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Chess.com Hydrated

Baixe arquivos de extensão Chess.com Hydrated no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        This extension provides new methods of manually drawing arrows on the chess board to plan out your moves:

• 🔗 Hold right-click then left-click to draw arrows in chain mode. This means that the next arrow will start where the previous arrow ended.
• 🌸 Hold middle-click then left-click to draw arrows in flower mode. This means that all arrows will start from the square you middle-clicked.                    

Informações Básicas da Extensão

Nome Chess.com Hydrated Chess.com Hydrated
ID iglihljdgnhnoahhpadanelfnkclnnda
URL Oficial https://chromewebstore.google.com/detail/chesscom-hydrated/iglihljdgnhnoahhpadanelfnkclnnda
Descrição Additional features for chess.com
Tamanho do Arquivo 573 KB
Contagem de Instalações 52
Versão Atual 2023.10.16
Última Atualização 2023-10-16
Data de Publicação 2023-01-10
Desenvolvedor kris.brethower
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chess.com Hydrated",
    "version": "2023.10.16",
    "manifest_version": 3,
    "description": "Additional features for chess.com",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.chess.com\/*"
            ],
            "js": [
                "content_scripts\/init.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "60": "images\/icon-60.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png"
    },
    "action": {
        "default_title": "Chess.com Hydrated",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}