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
公式URL 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
Eメール [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
    }
}