Pokemon Challenges Web Extension

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

什麼是Pokemon Challenges Web Extension?

Pokemon Challenges Web Extension是由everoddish開發的Chrome擴展程式,該擴展的主要功能是“Adds additional content to https://twitch.tv/pokemonchallenges”。

擴展截圖

screenshot

下載Pokemon Challenges Web Extension擴展crx文件

下載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
官方網址 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
    }
}