PokePortrait

Show the corresponding pokemon portrait when hovering a pokemon name

PokePortrait란 무엇입니까?

PokePortrait은(는) http://bandanatech.com/letsplayjapan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show the corresponding pokemon portrait when hovering a pokemon name"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

PokePortrait 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Poke Portrait
This application shows the portrait and pokedex # of the pokemon when you hover it's name with the mouse.
Useful when you can't remember the names of all 720 pokemons, or if you don't know the pokemon names in English (Update : And other languages) !

Features:
- All 720 pokemons
- Display Types I and II
- Display names in English, French, German and Japanese
- Simply hover the mouse over any pokemon name on any webpage

V1.2.1 Update(10/December/2015)
- Bug fix (Vespiquen)

V1.2 Update (17/October/2015)
- Replaced art for gen VI (high def art from bulbapedia.bulbagarden.net)
- Bug fixes (Braixen typo, some Japanese and French names not showing)

V1.1 Update (09/October/2015)
- Added support for name recognition in other languages (French, German and Japanese)
- Bug fixes (name recognition and missing portraits)

Data sources:
- pokemon list from http://pokemon.wikia.com/wiki/List_of_Pok%C3%A9mon
- pokemon sprites from http://veekun.com/ and http://pokemondb.net/sprites

Visit http://bandanatech.com/letsplayjapan/?page_id=31 for screenshots and contact info.                    

확장 프로그램 기본 정보

이름 PokePortrait PokePortrait
ID bgojjinelaofjnhdicamhchpoechmfmk
공식 URL https://chrome.google.com/webstore/detail/pokeportrait/bgojjinelaofjnhdicamhchpoechmfmk
설명 Show the corresponding pokemon portrait when hovering a pokemon name
파일 크기 10.65 MB
설치 횟수 173
현재 버전 1.2.1
최근 업데이트 2015-12-10
출시 날짜 2015-12-10
평점 3.71/5 총 7 개의 평점
개발자 http://bandanatech.com/letsplayjapan
결제 유형 free
확장 프로그램 웹 사이트 http://bandanatech.com/letsplayjapan/?page_id=31
도움말 페이지 URL http://bandanatech.com/letsplayjapan/?page_id=31
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PokePortrait",
    "short_name": "PokePortrait",
    "description": "Show the corresponding pokemon portrait when hovering a pokemon name",
    "version": "1.2.1",
    "permissions": [
        "activeTab",
        "",
        "storage"
    ],
    "browser_action": {
        "default_icon": "pokeportrait.png"
    },
    "web_accessible_resources": [
        "pokemon\/dream-world\/*.svg",
        "pokemon\/dream-world\/*.png"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "myCss.css"
            ],
            "js": [
                "jquery-ui-1.11.4.custom\/external\/jquery\/jquery.js",
                "jquery-ui-1.11.4.custom\/jquery-ui.js",
                "dialog.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}