Pokemon Challenges Web Extension
Adds additional content to https://twitch.tv/pokemonchallenges
Pokemon Challenges Web Extensionคืออะไร?
Pokemon Challenges Web Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย everoddish และคุณลักษณะหลักของมันคือ "Adds additional content to https://twitch.tv/pokemonchallenges"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pokemon Challenges Web Extension
ดาวน์โหลดไฟล์ส่วนขยาย Pokemon Challenges Web Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ![]() |
ID | paippbdalfnjofpngceofohenenfggel |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/pokemon-challenges-web-ex/paippbdalfnjofpngceofohenenfggel |
คำอธิบาย | Adds additional content to https://twitch.tv/pokemonchallenges |
ขนาดไฟล์ | 20.81 KB |
จำนวนการติดตั้ง | 10 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2017-07-20 |
วันที่เผยแพร่ | 2017-07-20 |
คะแนน | 4.86/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | everoddish |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://everoddish.com |
ภาษาที่รองรับ | 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 } } |