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?

Pokedex Linker - это расширение Chrome, разработанное https://thepoke.de, и его основная функция - "Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Pokedex Linker

Скачайте файлы расширений Pokedex Linker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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).                    

Основная информация о расширении

Название Pokedex Linker Pokedex Linker
ID cafmpknaihmoehhoehfcfpnjdmcpffee
Официальный URL https://chromewebstore.google.com/detail/pokedex-linker/cafmpknaihmoehhoehfcfpnjdmcpffee
Описание Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.
Размер файла 168 KB
Количество установок 77
Текущая Версия 3.6
Последнее Обновление 2020-06-03
Дата публикации 2020-06-02
Рейтинг 5.00/5 Всего 3 оценок
Разработчик https://thepoke.de
Тип оплаты free
Официальный сайт расширения https://thepoke.de/x/
Поддерживаемые языки 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"
            ]
        }
    ]
}