Showdown Helper

Adds UI elements to Pokemon Showdown for easier battles

ما هو Showdown Helper؟

Showdown Helper هو إضافة Chrome تم تطويرها بواسطة garvey.nick، والميزة الرئيسية لها هي "Adds UI elements to Pokemon Showdown for easier battles".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Showdown Helper

قم بتنزيل ملفات الامتداد Showdown Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Showdown Helper is a Chrome extension that adds utilities to the Pokemon Showdown UI.

Feature List:
* Clicking on a Pokemon in the team list will go directly to the Smogon page for it.
* Show a notification on battle end
* That's it for now :)

https://github.com/nickgarvey/showdown-helper                    

معلومات أساسية عن التمديد

الاسم Showdown Helper Showdown Helper
ID lgkjcofboheamlghbmmpegfdjifaaocl
عنوان URL الرسمي https://chromewebstore.google.com/detail/showdown-helper/lgkjcofboheamlghbmmpegfdjifaaocl
الوصف Adds UI elements to Pokemon Showdown for easier battles
حجم الملف 54.8 KB
عدد التثبيتات 192
النسخة الحالية 1.2.0
آخر تحديث 2020-08-13
تاريخ النشر 2020-08-12
المطور garvey.nick
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/nickgarvey/showdown-helper
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Showdown Helper",
    "version": "1.2.0",
    "description": "Adds UI elements to Pokemon Showdown for easier battles",
    "manifest_version": 2,
    "permissions": [
        "declarativeContent",
        "notifications",
        "https:\/\/www.smogon.com\/",
        "https:\/\/play.pokemonshowdown.com\/"
    ],
    "background": {
        "scripts": [
            "toggle_icon.js",
            "handle_message.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.pokemonshowdown.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "default_icon": "icon.png"
    }
}