X-Wing Companion Card Viewer

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

Cos'è X-Wing Companion Card Viewer?

X-Wing Companion Card Viewer è un'estensione di Chrome sviluppata da Guido Kessels, e la sua funzione principale è "Adds card images when it finds card names from the X-Wing Miniatures Game.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione X-Wing Companion Card Viewer

Scarica i file di estensione X-Wing Companion Card Viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome X-Wing Companion Card Viewer X-Wing Companion Card Viewer
ID bilhapljfgefhhepedfaanikpailghbm
URL Ufficiale https://chromewebstore.google.com/detail/x-wing-companion-card-vie/bilhapljfgefhhepedfaanikpailghbm
Descrizione Adds card images when it finds card names from the X-Wing Miniatures Game.
Dimensione del File 98.25 KB
Conteggio Installazioni 437
Versione Corrente 1.7
Ultimo Aggiornamento 2017-01-29
Data di Pubblicazione 2017-01-29
Valutazione 4.60/5 Totale 25 Valutazioni
Sviluppatore Guido Kessels
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}