Twitch Pokemon Helper

Helps attain pokemon badges the TwitchPresents stream.

Cos'è Twitch Pokemon Helper?

Twitch Pokemon Helper è un'estensione di Chrome sviluppata da Xeio, e la sua funzione principale è "Helps attain pokemon badges the TwitchPresents stream.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitch Pokemon Helper

Scarica i file di estensione Twitch Pokemon Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Twitch Pokemon Helper Twitch Pokemon Helper
ID lkiomiclaaoehjemoljiekcfaofkomkl
URL Ufficiale https://chromewebstore.google.com/detail/twitch-pokemon-helper/lkiomiclaaoehjemoljiekcfaofkomkl
Descrizione Helps attain pokemon badges the TwitchPresents stream.
Dimensione del File 116 KB
Conteggio Installazioni 343
Versione Corrente 1.2.2
Ultimo Aggiornamento 2018-09-18
Data di Pubblicazione 2018-09-18
Valutazione 4.82/5 Totale 22 Valutazioni
Sviluppatore Xeio
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Xeio/TwitchPokemonHelper
Lingue Supportate 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\/*"
        ]
    }
}