Twitch Tracker

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

Twitch Tracker क्या है?

Twitch Tracker https://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 फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

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

                        Re-upload of the original Twitch Tracker chrome extension by SirMrE.
It was accidentally deleted when I moved my email accounts away from Google - Sorry about that!
--------------------------------

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.

Version 1.0.2
--------------------------------
Migrated to new Twitch API - It should work again now.

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 ablhocackcgobgcndbibfkjnmpdnmbpa
आधिकारिक URL https://chromewebstore.google.com/detail/twitch-tracker/ablhocackcgobgcndbibfkjnmpdnmbpa
विवरण Easily get notified when a stream goes live. An extension by www.SirMrE.com.
फ़ाइल का आकार 187 KB
स्थापना संख्या 369
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2023-10-11
प्रकाशन तिथि 2023-01-19
रेटिंग 4.40/5 कुल 10 रेटिंग्स
डेवलपर https://www.sirmre.com
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Tracker",
    "version": "1.0.2",
    "manifest_version": 3,
    "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": {
        "service_worker": "src\/bg\/background.js",
        "type": "module"
    },
    "options_page": "src\/options\/index.html",
    "action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Twitch Tracker",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "storage",
        "notifications",
        "identity",
        "offscreen"
    ],
    "host_permissions": [
        "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": [
        {
            "resources": [
                "icons\/icon128.png",
                "icons\/icon128-check.png"
            ],
            "matches": [
                "https:\/\/twitch.tv\/*",
                "https:\/\/www.twitch.tv\/*"
            ]
        }
    ]
}