PokePortrait

Show the corresponding pokemon portrait when hovering a pokemon name

PokePortrait là gì?

PokePortrait là một tiện ích mở rộng Chrome được phát triển bởi http://bandanatech.com/letsplayjapan, và tính năng chính của nó là "Show the corresponding pokemon portrait when hovering a pokemon name".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng PokePortrait

Tải xuống các tệp mở rộng PokePortrait 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

                        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.                    

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

Tên PokePortrait PokePortrait
ID bgojjinelaofjnhdicamhchpoechmfmk
URL Chính Thức https://chrome.google.com/webstore/detail/pokeportrait/bgojjinelaofjnhdicamhchpoechmfmk
Mô tả Show the corresponding pokemon portrait when hovering a pokemon name
Kích Thước Tệp 10.65 MB
Số Lần Cài Đặt 173
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2015-12-10
Ngày Phát Hành 2015-12-10
Đánh Giá 3.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển http://bandanatech.com/letsplayjapan
Loại Thanh Toán free
Trang Web Mở Rộng http://bandanatech.com/letsplayjapan/?page_id=31
URL Trang Trợ Giúp http://bandanatech.com/letsplayjapan/?page_id=31
Ngôn Ngữ Được Hỗ Trợ 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
}