Twitch Pokemon Helper

Helps attain pokemon badges the TwitchPresents stream.

O que é Twitch Pokemon Helper?

Twitch Pokemon Helper é uma extensão do Chrome desenvolvida por Xeio, e sua principal característica é "Helps attain pokemon badges the TwitchPresents stream.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Twitch Pokemon Helper

Baixe arquivos de extensão Twitch Pokemon Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        For the TwitchPresents Pokemon anime stream.

Plays sounds when badges appear on stream. Can play separate sounds for new or already-owned badges. Options can be changed by clicking the extension button.

If an Ad is visible when a badge appears, this extension will make the badge extension visible and clickable even if it wouldn't normally be. This feature is disabled by default.                    

Informações Básicas da Extensão

Nome Twitch Pokemon Helper Twitch Pokemon Helper
ID lkiomiclaaoehjemoljiekcfaofkomkl
URL Oficial https://chromewebstore.google.com/detail/twitch-pokemon-helper/lkiomiclaaoehjemoljiekcfaofkomkl
Descrição Helps attain pokemon badges the TwitchPresents stream.
Tamanho do Arquivo 116 KB
Contagem de Instalações 343
Versão Atual 1.2.2
Última Atualização 2018-09-18
Data de Publicação 2018-09-18
Classificação 4.82/5 Total de 22 Avaliações
Desenvolvedor Xeio
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Xeio/TwitchPokemonHelper
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Pokemon Helper",
    "version": "1.2.2",
    "manifest_version": 2,
    "description": "Helps attain pokemon badges the TwitchPresents stream.",
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "https:\/\/www.twitch.tv\/twitchpresents"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.ext-twitch.tv\/*"
            ],
            "all_frames": true,
            "js": [
                "src\/inject.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/preferences.js",
            "src\/bg.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "src\/options.html"
    },
    "web_accessible_resources": [
        "src\/pageInject.js"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.ext-twitch.tv\/*"
        ]
    }
}