Twitch Pokemon Helper

Helps attain pokemon badges the TwitchPresents stream.

Twitch Pokemon Helper là gì?

Twitch Pokemon Helper là một tiện ích mở rộng Chrome được phát triển bởi Xeio, và tính năng chính của nó là "Helps attain pokemon badges the TwitchPresents stream.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Twitch Pokemon Helper

Tải xuống các tệp mở rộng Twitch Pokemon Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Twitch Pokemon Helper Twitch Pokemon Helper
ID lkiomiclaaoehjemoljiekcfaofkomkl
URL Chính Thức https://chromewebstore.google.com/detail/twitch-pokemon-helper/lkiomiclaaoehjemoljiekcfaofkomkl
Mô tả Helps attain pokemon badges the TwitchPresents stream.
Kích Thước Tệp 116 KB
Số Lần Cài Đặt 343
Phiên Bản Hiện Tại 1.2.2
Cập Nhật Lần Cuối 2018-09-18
Ngày Phát Hành 2018-09-18
Đánh Giá 4.82/5 Tổng số 22 Đánh Giá
Nhà Phát Triển Xeio
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Xeio/TwitchPokemonHelper
Ngôn Ngữ Được Hỗ Trợ 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\/*"
        ]
    }
}