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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}