X-Wing Companion Card Viewer

Adds card images when it finds card names from the X-Wing Miniatures Game.

O que é X-Wing Companion Card Viewer?

X-Wing Companion Card Viewer é uma extensão do Chrome desenvolvida por Guido Kessels, e sua principal característica é "Adds card images when it finds card names from the X-Wing Miniatures Game.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão X-Wing Companion Card Viewer

Baixe arquivos de extensão X-Wing Companion Card Viewer 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

                        Adds card images when it finds card names from the X-Wing Miniatures Game. 

The extension works on the following websites:
- reddit.com/r/XWingTMG
- reddit.com/r/xwingonline
- fantasyflightgames.com
- teamcovenant.com
- lists.starwarsclubhouse.com (List Juggler)

It will recognize common abbreviations, like "TLT" (for "Twin Laster Turret"). If a text matches multiple cards (say "Han Solo" or "Boba Fett") all of the matching cards will be shown.

The extension will be updated automatically every time new cards are spoiled.                    

Informações Básicas da Extensão

Nome X-Wing Companion Card Viewer X-Wing Companion Card Viewer
ID bilhapljfgefhhepedfaanikpailghbm
URL Oficial https://chromewebstore.google.com/detail/x-wing-companion-card-vie/bilhapljfgefhhepedfaanikpailghbm
Descrição Adds card images when it finds card names from the X-Wing Miniatures Game.
Tamanho do Arquivo 98.25 KB
Contagem de Instalações 437
Versão Atual 1.7
Última Atualização 2017-01-29
Data de Publicação 2017-01-29
Classificação 4.60/5 Total de 25 Avaliações
Desenvolvedor Guido Kessels
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "X-Wing Companion Card Viewer",
    "description": "Adds card images when it finds card names from the X-Wing Miniatures Game.",
    "version": "1.7",
    "web_accessible_resources": [
        "icon-32.png",
        "aliases.json",
        "kimberley bl.ttf"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/r\/XWingTMG\/comments\/*",
                "*:\/\/*.reddit.com\/r\/xwingonline\/comments\/*",
                "*:\/\/*.fantasyflightgames.com\/*",
                "*:\/\/*.teamcovenant.com\/star-wars-x-wing\/*",
                "*:\/\/lists.starwarsclubhouse.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "32": "icon-32.png",
        "48": "icon-128.png",
        "128": "icon-128.png"
    }
}