X-Wing Companion Card Viewer
Adds card images when it finds card names from the X-Wing Miniatures Game.
Qu'est-ce que X-Wing Companion Card Viewer ?
X-Wing Companion Card Viewer est une extension Chrome développée par Guido Kessels, et sa fonction principale est "Adds card images when it finds card names from the X-Wing Miniatures Game.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension X-Wing Companion Card Viewer
Téléchargez les fichiers d'extension X-Wing Companion Card Viewer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | X-Wing Companion Card Viewer |
ID | bilhapljfgefhhepedfaanikpailghbm |
URL Officiel | https://chromewebstore.google.com/detail/x-wing-companion-card-vie/bilhapljfgefhhepedfaanikpailghbm |
Description | Adds card images when it finds card names from the X-Wing Miniatures Game. |
Taille du Fichier | 98.25 KB |
Nombre d'Installations | 437 |
Version Actuelle | 1.7 |
Dernière Mise à Jour | 2017-01-29 |
Date de Publication | 2017-01-29 |
Évaluation | 4.60/5 Total 25 Évaluations |
Développeur | Guido Kessels |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |