Pokemon Challenges Web Extension

Adds additional content to https://twitch.tv/pokemonchallenges

ما هو Pokemon Challenges Web Extension؟

Pokemon Challenges Web Extension هو إضافة Chrome تم تطويرها بواسطة everoddish، والميزة الرئيسية لها هي "Adds additional content to https://twitch.tv/pokemonchallenges".

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

screenshot

تحميل ملف CRX للإضافة Pokemon Challenges Web Extension

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

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

                        This extension allows viewers of the Twitch user PokemonChallenges to see their real-time coin balance, in-game Pokemon data, and to receive notifications from the streamer.                    

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

الاسم Pokemon Challenges Web Extension Pokemon Challenges Web Extension
ID paippbdalfnjofpngceofohenenfggel
عنوان URL الرسمي https://chrome.google.com/webstore/detail/pokemon-challenges-web-ex/paippbdalfnjofpngceofohenenfggel
الوصف Adds additional content to https://twitch.tv/pokemonchallenges
حجم الملف 20.81 KB
عدد التثبيتات 10
النسخة الحالية 1.2
آخر تحديث 2017-07-20
تاريخ النشر 2017-07-20
تقييم 4.86/5 مجموع تقييمات 7
المطور everoddish
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://everoddish.com
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pokemon Challenges Web Extension",
    "description": "Adds additional content to https:\/\/twitch.tv\/pokemonchallenges",
    "version": "1.2",
    "icons": {
        "32": "pc_logo_32.png",
        "48": "pc_logo_48.png"
    },
    "web_accessible_resources": [
        "pc_logo_32_live.png",
        "pc_logo_48.png"
    ],
    "browser_action": {
        "default_icon": {
            "32": "pc_logo_32.png"
        },
        "default_title": "Pokemon Challenges"
    },
    "permissions": [
        "https:\/\/www.twitch.tv\/pokemonchallenges",
        "https:\/\/www.twitch.tv\/pokemonchallenges\/*",
        "https:\/\/api.twitch.tv\/*",
        "https:\/\/everoddish.com\/",
        "notifications"
    ],
    "content_scripts": [
        {
            "js": [
                "pc_content.js",
                "move_colours.js"
            ],
            "css": [
                "pc.css"
            ],
            "matches": [
                "https:\/\/www.twitch.tv\/pokemonchallenges",
                "https:\/\/www.twitch.tv\/pokemonchallenges\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "pc_background.js"
        ],
        "persistent": false
    }
}