X-Wing Companion Card Viewer
Adds card images when it finds card names from the X-Wing Miniatures Game.
Vad är X-Wing Companion Card Viewer?
X-Wing Companion Card Viewer är en Chrome-tillägg utvecklad av Guido Kessels, och dess huvudfunktion är "Adds card images when it finds card names from the X-Wing Miniatures Game.".
Tilläggsskärmbilder
Ladda ner X-Wing Companion Card Viewer-förlängningens CRX-fil
Ladda ner X-Wing Companion Card Viewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | X-Wing Companion Card Viewer |
ID | bilhapljfgefhhepedfaanikpailghbm |
Officiell webbadress | https://chromewebstore.google.com/detail/x-wing-companion-card-vie/bilhapljfgefhhepedfaanikpailghbm |
Beskrivning | Adds card images when it finds card names from the X-Wing Miniatures Game. |
Filstorlek | 98.25 KB |
Antal Installationer | 437 |
Aktuell Version | 1.7 |
Senast Uppdaterad | 2017-01-29 |
Publiceringsdatum | 2017-01-29 |
Betyg | 4.60/5 Totalt 25 Betyg |
Utvecklare | Guido Kessels |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |