Twitch Follower Count
Configurable Chrome extension that shows follower count when in a twitch channel page.
Twitch Follower Countคืออะไร?
Twitch Follower Count เป็นส่วนขยายของ Chrome ที่พัฒนาโดย aranciro และคุณลักษณะหลักของมันคือ "Configurable Chrome extension that shows follower count when in a twitch channel page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Follower Count
ดาวน์โหลดไฟล์ส่วนขยาย Twitch Follower Count ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Puts the follower count next to the channel name on Twitch.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Twitch Follower Count |
ID | phpdilphbfgmibgdegclmliinkddhloe |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/twitch-follower-count/phpdilphbfgmibgdegclmliinkddhloe |
คำอธิบาย | Configurable Chrome extension that shows follower count when in a twitch channel page. |
ขนาดไฟล์ | 81.73 KB |
จำนวนการติดตั้ง | 41 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2021-06-09 |
วันที่เผยแพร่ | 2021-06-08 |
ผู้พัฒนา | aranciro |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/aranciro/Twitch-Follower-Count-Chrome |
URL หน้าช่วยเหลือ | https://github.com/aranciro/Twitch-Follower-Count-Chrome/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Follower Count", "version": "1.0.0", "description": "Configurable Chrome extension that shows follower count when in a twitch channel page.", "icons": { "16": "res\/twitch-follower-count-icon-16x16.png", "32": "res\/twitch-follower-count-icon-32x32.png", "48": "res\/twitch-follower-count-icon-48x48.png", "64": "res\/twitch-follower-count-icon-64x64.png", "128": "res\/twitch-follower-count-icon-128x128.png" }, "options_page": "options\/index.html", "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/*.twitch.tv\/*", "https:\/\/*.twitch.tv\/*" ], "js": [ "twitch-follower-count.user.js" ], "css": [ "twitch-follower-count.css" ] } ], "manifest_version": 3 } |