Pokedex Linker

Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.

Pokedex Linker là gì?

Pokedex Linker là một tiện ích mở rộng Chrome được phát triển bởi https://thepoke.de, và tính năng chính của nó là "Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.".

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

screenshot

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

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

                        Every good trainer needs the latest information about whatever Pokemon may cross their path. If you happen to stumble across one while browsing the internet, this extension will convert any mentioned name to link for that pokemon on thepoke.de/x/. Hovering over that link will provide a quick peek of that pokemon, it's national dex number, and it's type(s).                    

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

Tên Pokedex Linker Pokedex Linker
ID cafmpknaihmoehhoehfcfpnjdmcpffee
URL Chính Thức https://chromewebstore.google.com/detail/pokedex-linker/cafmpknaihmoehhoehfcfpnjdmcpffee
Mô tả Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.
Kích Thước Tệp 168 KB
Số Lần Cài Đặt 77
Phiên Bản Hiện Tại 3.6
Cập Nhật Lần Cuối 2020-06-03
Ngày Phát Hành 2020-06-02
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://thepoke.de
Loại Thanh Toán free
Trang Web Mở Rộng https://thepoke.de/x/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pokedex Linker",
    "description": "Converts pokemon names to links that open up ThePoke.de\/x\/ with easy access info when you hover over the link.",
    "version": "3.6",
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png",
        "512": "icon_512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "popper.min.js",
                "tooltip.min.js",
                "db.js",
                "content.js"
            ]
        }
    ]
}