Pokemon Challenges Web Extension

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

Co je Pokemon Challenges Web Extension?

Pokemon Challenges Web Extension je rozšíření Chrome vyvinuté everoddish, a jeho hlavní funkcí je „Adds additional content to https://twitch.tv/pokemonchallenges“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Pokemon Challenges Web Extension

Stáhněte si soubory rozšíření Pokemon Challenges Web Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Pokemon Challenges Web Extension Pokemon Challenges Web Extension
ID paippbdalfnjofpngceofohenenfggel
Oficiální URL https://chrome.google.com/webstore/detail/pokemon-challenges-web-ex/paippbdalfnjofpngceofohenenfggel
Popis Adds additional content to https://twitch.tv/pokemonchallenges
Velikost souboru 20.81 KB
Počet instalací 10
Aktuální Verze 1.2
Poslední Aktualizace 2017-07-20
Datum Vydání 2017-07-20
Hodnocení 4.86/5 Celkem 7 Hodnocení
Vývojář everoddish
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://everoddish.com
Podporované Jazyky 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
    }
}