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 с друзьями, чтобы легко установить расширения Chrome.

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

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