Pokemon Challenges Web Extension
Adds additional content to https://twitch.tv/pokemonchallenges
What is Pokemon Challenges Web Extension?
Pokemon Challenges Web Extension is a Chrome extension developed by everoddish, and its main feature is "Adds additional content to https://twitch.tv/pokemonchallenges".
Extension Screenshots
Download Pokemon Challenges Web Extension Extension CRX File
Download Pokemon Challenges Web Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | ![]() |
ID | paippbdalfnjofpngceofohenenfggel |
Official URL | https://chrome.google.com/webstore/detail/pokemon-challenges-web-ex/paippbdalfnjofpngceofohenenfggel |
Description | Adds additional content to https://twitch.tv/pokemonchallenges |
File Size | 20.81 KB |
Installation Count | 10 |
Current Version | 1.2 |
Last Updated | 2017-07-20 |
Publish Date | 2017-07-20 |
Rating | 4.86/5 Total 7 Ratings |
Developer | everoddish |
[email protected] | |
Payment Type | free |
Extension Website | https://everoddish.com |
Supported Languages | 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 } } |