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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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
    }
}