Twitch Tabs

Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!

Vad är Twitch Tabs?

Twitch Tabs är en Chrome-tillägg utvecklad av RocketBuilt Apps, och dess huvudfunktion är "Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Twitch Tabs-förlängningens CRX-fil

Ladda ner Twitch Tabs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Simply log in to you Twitch account through the extension and set your favorite streams! Easily track your favorite streamers and see when they are online. 

Twitch Tabs allows you to open all of your favorite online Twitch streams in tabs with the click of a button or individual streams. 

Update 0.4.1:
Implemented Chrome Notifications with the ability to toggle on and off 
Bug fixes                    

Grundläggande Information om Tillägg

Namn Twitch Tabs Twitch Tabs
ID bnaleaigeeaockjojmidjnpfkhaobdbg
Officiell webbadress https://chromewebstore.google.com/detail/twitch-tabs/bnaleaigeeaockjojmidjnpfkhaobdbg
Beskrivning Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!
Filstorlek 1.19 MB
Antal Installationer 86
Aktuell Version 0.4.1
Senast Uppdaterad 2020-12-26
Publiceringsdatum 2020-12-25
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare RocketBuilt Apps
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/tylern88/streamertabs/issues
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Tabs",
    "version": "0.4.1",
    "description": "Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!",
    "permissions": [
        "identity",
        "storage",
        "notifications",
        "alarms",
        "https:\/\/id.twitch.tv\/*"
    ],
    "background": {
        "scripts": [
            "static\/js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "static\/js\/content.js"
            ],
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ]
        }
    ],
    "icons": {
        "192": "logo192.png"
    },
    "browser_action": {
        "default_icon": {
            "192": "logo192.png"
        },
        "default_title": "Twitch Tabs",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html"
    }
}