StreamHub
Chrome extension to track online streamers
什麼是StreamHub?
StreamHub是由streamhubinfo開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension to track online streamers”。
擴展截圖
下載StreamHub擴展crx文件
下載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 |
官方網址 | 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" } } |