MTG Display Color Names

Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.

O que é MTG Display Color Names?

MTG Display Color Names é uma extensão do Chrome desenvolvida por kevin.yuliawan, e sua principal característica é "Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão MTG Display Color Names

Baixe arquivos de extensão MTG Display Color Names 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

                        Useful for both new players learning the color names, and old players for reminders!

Turn it on/off by clicking on the extension icon, then clicking on the power button. This requires a refresh of the current page you're on.

Note: Currently disabled on Twitter due to page loading issues. This will be targeted for a fix in later releases.                    

Informações Básicas da Extensão

Nome MTG Display Color Names MTG Display Color Names
ID nngpmgkjlppmoadcjbabccppcbdeeobf
URL Oficial https://chromewebstore.google.com/detail/mtg-display-color-names/nngpmgkjlppmoadcjbabccppcbdeeobf
Descrição Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.
Tamanho do Arquivo 51.64 KB
Contagem de Instalações 131
Versão Atual 1.0.2
Última Atualização 2019-04-23
Data de Publicação 2019-04-17
Classificação 4.40/5 Total de 10 Avaliações
Desenvolvedor kevin.yuliawan
Tipo de Pagamento free
Site da Extensão https://github.com/kevinyuliawan/mtg-display-color-names/
URL da Página de Ajuda https://github.com/kevinyuliawan/mtg-display-color-names/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MTG Display Color Names",
    "version": "1.0.2",
    "description": "Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds\/shards\/wedges.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "images\/*.svg"
    ]
}