Pokemon Challenges Web Extension
Adds additional content to https://twitch.tv/pokemonchallenges
Vad är Pokemon Challenges Web Extension?
Pokemon Challenges Web Extension är en Chrome-tillägg utvecklad av everoddish, och dess huvudfunktion är "Adds additional content to https://twitch.tv/pokemonchallenges".
Tilläggsskärmbilder
Ladda ner Pokemon Challenges Web Extension-förlängningens CRX-fil
Ladda ner Pokemon Challenges Web Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | ![]() |
ID | paippbdalfnjofpngceofohenenfggel |
Officiell webbadress | https://chrome.google.com/webstore/detail/pokemon-challenges-web-ex/paippbdalfnjofpngceofohenenfggel |
Beskrivning | Adds additional content to https://twitch.tv/pokemonchallenges |
Filstorlek | 20.81 KB |
Antal Installationer | 10 |
Aktuell Version | 1.2 |
Senast Uppdaterad | 2017-07-20 |
Publiceringsdatum | 2017-07-20 |
Betyg | 4.86/5 Totalt 7 Betyg |
Utvecklare | everoddish |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://everoddish.com |
Stödda Språk | 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 } } |