StreamHub
Chrome extension to track online streamers
StreamHubคืออะไร?
StreamHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย streamhubinfo และคุณลักษณะหลักของมันคือ "Chrome extension to track online streamers"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย StreamHub
ดาวน์โหลดไฟล์ส่วนขยาย StreamHub ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
StreamHub saves you from having to load twitch.tv in order to check if your favorite streamers are online! Simply click a username to open a new tab directly to their stream This is an early release, please leave comments and reviews to let me know what features you would like to see in the future! Future features: Notifications, sorting and selecting favorites to keep on top! StreamHub is 100% free. If you would like to help support future development, you may donate to paypal.me/streamhub. For technical issues, please email [email protected] with a description of your issue. This chrome extension has no legal affiliation with twitch.tv, or their respective companies and affiliates.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | StreamHub |
ID | daagphegbegnbcdeejipidepfhdpigph |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/streamhub/daagphegbegnbcdeejipidepfhdpigph |
คำอธิบาย | Chrome extension to track online streamers |
ขนาดไฟล์ | 697 KB |
จำนวนการติดตั้ง | 77 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2020-09-16 |
วันที่เผยแพร่ | 2020-06-16 |
ผู้พัฒนา | streamhubinfo |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "StreamHub", "version": "1.2", "manifest_version": 2, "description": "Chrome extension to track online streamers", "permissions": [ "storage" ], "icons": { "16": "images\/16x16.png", "48": "images\/48x48.png", "128": "images\/128x128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.twitch.tv\/*", "https:\/\/mixer.com\/api\/v1\/channels\/" ], "js": [ "popup.js" ] } ], "browser_action": { "default_icon": "images\/baboo.png", "default_popup": "popup.html", "default_title": "StreamHub" } } |