X-Wing Companion Card Viewer

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

Was ist X-Wing Companion Card Viewer?

X-Wing Companion Card Viewer ist eine Chrome-Erweiterung, die von Guido Kessels entwickelt wurde, und ihr Hauptmerkmal ist "Adds card images when it finds card names from the X-Wing Miniatures Game.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

X-Wing Companion Card Viewer-Erweiterungs-CRX-Datei herunterladen

Laden Sie X-Wing Companion Card Viewer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name X-Wing Companion Card Viewer X-Wing Companion Card Viewer
ID bilhapljfgefhhepedfaanikpailghbm
Offizielle URL https://chromewebstore.google.com/detail/x-wing-companion-card-vie/bilhapljfgefhhepedfaanikpailghbm
Beschreibung Adds card images when it finds card names from the X-Wing Miniatures Game.
Dateigröße 98.25 KB
Installationsanzahl 437
Aktuelle Version 1.7
Letztes Update 2017-01-29
Veröffentlichungsdatum 2017-01-29
Bewertung 4.60/5 Insgesamt 25 Bewertungen
Entwickler Guido Kessels
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}