Card Image for Yu-Gi-Oh! Card Wiki

Show card images on Yu-Gi-Oh! Card Wiki.

Card Image for Yu-Gi-Oh! Card Wiki란 무엇입니까?

Card Image for Yu-Gi-Oh! Card Wiki은(는) uu1t에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show card images on Yu-Gi-Oh! Card Wiki."입니다.

확장 프로그램 스크린샷

screenshot

Card Image for Yu-Gi-Oh! Card Wiki 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Show card images on Yu-Gi-Oh! Card Wiki (http://yugioh-wiki.net/).

# Description
When you visit card pages on Yu-Gi-Oh! Card Wiki (http://yugioh-wiki.net/), search Yu-Gi-Oh! Wikia! (http://yugioh.wikia.com/wiki/Yu-Gi-Oh!_Wikia) for card images, and show them if found.
When searching, TCG card images may be prior to OCG ones.

# Changelog
## v0.3.0 - 2019-07-10
- Fix Cross-Origin Read Blocking (CORB) error

## v0.2.2 - 2018-08-21
- Publish as Firefox extension

## v0.2.1 - 2018-08-14
- Partially fix Japanse card name serch

## v0.2.0 - 2018-08-14
- Fix Japanese card name search
- Add icons                    

확장 프로그램 기본 정보

이름 Card Image for Yu-Gi-Oh! Card Wiki Card Image for Yu-Gi-Oh! Card Wiki
ID npideaikogpbodfhcdcaabjnccclkfcb
공식 URL https://chromewebstore.google.com/detail/card-image-for-yu-gi-oh-c/npideaikogpbodfhcdcaabjnccclkfcb
설명 Show card images on Yu-Gi-Oh! Card Wiki.
파일 크기 8.58 KB
설치 횟수 187
현재 버전 0.3.0
최근 업데이트 2019-07-10
출시 날짜 2019-07-10
평점 3.33/5 총 3 개의 평점
개발자 uu1t
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/uu1t/card-image-for-yugioh-card-wiki
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "minimum_chrome_version": "55",
    "name": "__MSG_extName__",
    "version": "0.3.0",
    "default_locale": "ja",
    "description": "__MSG_extDescription__",
    "author": "Yuichi Tanikawa",
    "homepage_url": "https:\/\/github.com\/uu1t\/card-image-for-yugioh-card-wiki",
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/yugioh-wiki.net\/?*",
                "http:\/\/yugioh-wiki.net\/index.php?*",
                "http:\/\/yugioh-wiki.net\/pukiwiki.php?*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "index.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/yugioh.fandom.com\/"
    ]
}