Pokemon Challenges Web Extension
Adds additional content to https://twitch.tv/pokemonchallenges
Co to jest Pokemon Challenges Web Extension?
Pokemon Challenges Web Extension to rozszerzenie Chrome opracowane przez everoddish, a jego główną funkcją jest „Adds additional content to https://twitch.tv/pokemonchallenges”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Pokemon Challenges Web Extension
Pobierz pliki rozszerzeń Pokemon Challenges Web Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | ![]() |
ID | paippbdalfnjofpngceofohenenfggel |
Oficjalny URL | https://chrome.google.com/webstore/detail/pokemon-challenges-web-ex/paippbdalfnjofpngceofohenenfggel |
Opis | Adds additional content to https://twitch.tv/pokemonchallenges |
Rozmiar pliku | 20.81 KB |
Liczba instalacji | 10 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2017-07-20 |
Data Publikacji | 2017-07-20 |
Ocena | 4.86/5 Łącznie 7 Oceny |
Deweloper | everoddish |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://everoddish.com |
Obsługiwane Języki | 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 } } |