Twitch Pokemon Helper

Helps attain pokemon badges the TwitchPresents stream.

什麼是Twitch Pokemon Helper?

Twitch Pokemon Helper是由Xeio開發的Chrome擴展程式,該擴展的主要功能是“Helps attain pokemon badges the TwitchPresents stream.”。

擴展截圖

screenshot

下載Twitch Pokemon Helper擴展crx文件

下載Twitch Pokemon Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Twitch Pokemon Helper Twitch Pokemon Helper
ID lkiomiclaaoehjemoljiekcfaofkomkl
官方網址 https://chromewebstore.google.com/detail/twitch-pokemon-helper/lkiomiclaaoehjemoljiekcfaofkomkl
簡介 Helps attain pokemon badges the TwitchPresents stream.
檔案大小 116 KB
安裝次數 343
目前版本 1.2.2
更新時間 2018-09-18
上架時間 2018-09-18
評分 4.82/5 共 22 次評分
開發者 Xeio
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/Xeio/TwitchPokemonHelper
支援的語言 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\/*"
        ]
    }
}