Twitch Tracker

Easily get notified when a stream goes live. An extension by www.SirMrE.com.

Twitch Tracker क्या है?

Twitch Tracker http://www.sirmre.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily get notified when a stream goes live. An extension by www.SirMrE.com."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitch Tracker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Track as many twitch accounts as you wish, and get visual and/or audible notifications when they go live.

Does not use any personal information, or access any sort of sensitive data.
There are no ads, tracking/data collection or other means to monetise this extension (not even analytical data like Google Analytics). It has been and always will be completely free.

Breaking Change (2.3.0+)
--------------------------------
Twitch now requires you to be logged in to use their API. You can read more about it here: https://discuss.dev.twitch.tv/t/requiring-oauth-for-helix-twitch-api-endpoints/23916 - I didn't want to add this but to keep it compatible with Twitch I had to require login before you can use the app.

Latest Changes (2.3.3)
--------------------------------
- Implement new auth flow to fix issues with Twitch Apps no longer supporting chrome app urls.

Version 2.0.0+ Changes
--------------------------------
- Added option to import followed channels directly from Twitch.
- Complete re-write of the whole extension. Much improved performance and reduce resource usage.
- Updated to v5 of the Twitch.tv API.
- Now adds a button on Twitch channels to easily toggle tracking.
- Will import v1 settings on initial run time.

Known issue
--------------------------------
- The Twitch Helix api does not support non-english channel names. Please import channels from Twitch directly and see if that helps!                    

एक्सटेंशन की मूल जानकारी

नाम Twitch Tracker Twitch Tracker
ID mfgohimanapiecmcjniokgkendodflfg
आधिकारिक URL https://chrome.google.com/webstore/detail/twitch-tracker/mfgohimanapiecmcjniokgkendodflfg
विवरण Easily get notified when a stream goes live. An extension by www.SirMrE.com.
फ़ाइल का आकार 186 KB
स्थापना संख्या 1,808
वर्तमान संस्करण 2.3.3
अंतिम अपडेट 2021-11-07
प्रकाशन तिथि 2020-05-07
रेटिंग 4.54/5 कुल 35 रेटिंग्स
डेवलपर http://www.sirmre.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.sirmre.com
गोपनीयता नीति पृष्ठ URL https://www.sirmre.com/privacy-policy.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Tracker",
    "version": "2.3.3",
    "manifest_version": 2,
    "description": "Easily get notified when a stream goes live. An extension by www.SirMrE.com.",
    "homepage_url": "https:\/\/www.sirmre.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "options_page": "src\/options\/index.html",
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Twitch Tracker",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "storage",
        "notifications",
        "identity",
        "https:\/\/*.twitch.tv\/*",
        "https:\/\/static-cdn.jtvnw.net\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/icon128.png",
        "icons\/icon128-check.png"
    ]
}