Arrow Painter for Chess.com
Change the arrow colors on chess.com website.
O que é Arrow Painter for Chess.com?
Arrow Painter for Chess.com é uma extensão do Chrome desenvolvida por Luiz Costa, e sua principal característica é "Change the arrow colors on chess.com website.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Arrow Painter for Chess.com
Baixe arquivos de extensão Arrow Painter for Chess.com 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
Change the arrow colors on chess.com website. If you use a theme that makes chess.com arrows difficult to see, this extension is for you. Features: * Allows you to choose the desired color * Option to enable or disable coloring NOTE: Chess.com has a multi-color feature if you draw the arrows using SHIFT, CTRL or ALT keys. If you install this extension ALL ARROWS WILL HAVE THE SAME COLORS even if you draw them using SHIFT, CTRL or ALT keys. Use this extension only if you don't need this feature. I'm not affiliated in any way with chess.com. If you find any bugs or have any suggestions please let me know at [email protected]. This extension does NOT read your browser history. It requires the storage permission to save the configurations.
Informações Básicas da Extensão
Nome | Arrow Painter for Chess.com |
ID | lbigiogpaeccogondhccbjnbiepimonm |
URL Oficial | https://chromewebstore.google.com/detail/arrow-painter-for-chessco/lbigiogpaeccogondhccbjnbiepimonm |
Descrição | Change the arrow colors on chess.com website. |
Tamanho do Arquivo | 27.79 KB |
Contagem de Instalações | 466 |
Versão Atual | 0.0.0.1 |
Última Atualização | 2022-02-03 |
Data de Publicação | 2022-02-02 |
Classificação | 2.00/5 Total de 2 Avaliações |
Desenvolvedor | Luiz Costa |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Arrow Painter for Chess.com", "description": "Change the arrow colors on chess.com website.", "version": "0.0.0.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.chess.com\/*" ], "js": [ "arrow-painter.js" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" } }, "icons": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" } } |