X-Wing Companion Card Viewer

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

X-Wing Companion Card Viewer란 무엇입니까?

X-Wing Companion Card Viewer은(는) Guido Kessels에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds card images when it finds card names from the X-Wing Miniatures Game."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

X-Wing Companion Card Viewer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 X-Wing Companion Card Viewer X-Wing Companion Card Viewer
ID bilhapljfgefhhepedfaanikpailghbm
공식 URL https://chromewebstore.google.com/detail/x-wing-companion-card-vie/bilhapljfgefhhepedfaanikpailghbm
설명 Adds card images when it finds card names from the X-Wing Miniatures Game.
파일 크기 98.25 KB
설치 횟수 437
현재 버전 1.7
최근 업데이트 2017-01-29
출시 날짜 2017-01-29
평점 4.60/5 총 25 개의 평점
개발자 Guido Kessels
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    }
}