StreamHub

Chrome extension to track online streamers

Cos'è StreamHub?

StreamHub è un'estensione di Chrome sviluppata da streamhubinfo, e la sua funzione principale è "Chrome extension to track online streamers".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione StreamHub

Scarica i file di estensione StreamHub in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome StreamHub StreamHub
ID daagphegbegnbcdeejipidepfhdpigph
URL Ufficiale https://chromewebstore.google.com/detail/streamhub/daagphegbegnbcdeejipidepfhdpigph
Descrizione Chrome extension to track online streamers
Dimensione del File 697 KB
Conteggio Installazioni 77
Versione Corrente 1.2
Ultimo Aggiornamento 2020-09-16
Data di Pubblicazione 2020-06-16
Sviluppatore streamhubinfo
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}