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

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

확장 프로그램 사용 설명서

                        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
공식 URL 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\/*"
        ]
    }
}