X-Wing Companion Card Viewer

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

X-Wing Companion Card Viewer là gì?

X-Wing Companion Card Viewer là một tiện ích mở rộng Chrome được phát triển bởi Guido Kessels, và tính năng chính của nó là "Adds card images when it finds card names from the X-Wing Miniatures Game.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng X-Wing Companion Card Viewer

Tải xuống các tệp mở rộng X-Wing Companion Card Viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên X-Wing Companion Card Viewer X-Wing Companion Card Viewer
ID bilhapljfgefhhepedfaanikpailghbm
URL Chính Thức https://chromewebstore.google.com/detail/x-wing-companion-card-vie/bilhapljfgefhhepedfaanikpailghbm
Mô tả Adds card images when it finds card names from the X-Wing Miniatures Game.
Kích Thước Tệp 98.25 KB
Số Lần Cài Đặt 437
Phiên Bản Hiện Tại 1.7
Cập Nhật Lần Cuối 2017-01-29
Ngày Phát Hành 2017-01-29
Đánh Giá 4.60/5 Tổng số 25 Đánh Giá
Nhà Phát Triển Guido Kessels
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}