Pokemon Challenges Web Extension

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

Pokemon Challenges Web Extension là gì?

Pokemon Challenges Web Extension là một tiện ích mở rộng Chrome được phát triển bởi everoddish, và tính năng chính của nó là "Adds additional content to https://twitch.tv/pokemonchallenges".

Ả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 Pokemon Challenges Web Extension

Tải xuống các tệp mở rộng Pokemon Challenges Web Extension 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

                        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.                    

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

Tên Pokemon Challenges Web Extension Pokemon Challenges Web Extension
ID paippbdalfnjofpngceofohenenfggel
URL Chính Thức https://chrome.google.com/webstore/detail/pokemon-challenges-web-ex/paippbdalfnjofpngceofohenenfggel
Mô tả Adds additional content to https://twitch.tv/pokemonchallenges
Kích Thước Tệp 20.81 KB
Số Lần Cài Đặt 10
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2017-07-20
Ngày Phát Hành 2017-07-20
Đánh Giá 4.86/5 Tổng số 7 Đánh Giá
Nhà Phát Triển everoddish
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://everoddish.com
Ngôn Ngữ Được Hỗ Trợ 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
    }
}