Twitch Enhancer

Extension that adds what is missing on Twitch.

Twitch Enhancer क्या है?

Twitch Enhancer https://enhancer.pro द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension that adds what is missing on Twitch."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension enhances Twitch with many features:
- Local wachtime - time spent watching your favorite streamers will be tracked,
- Bumping messages - show that you like someone's message,
- Chatters count - from now on you will know if streamer have fake viewers,
- Enhanced usercard - by clicking on user on chat you can see which streamers he is watching,
- Real Video Time - this shows you real time of video you are watching, also you can paste link of other video with timestamp to see exact moment from the other video,
- Quick Access Link (e.g. TwitchTracker),
- Easy copying emotes and usernames from chat,
- Ping sound when got mentioned on chat,
and more!

https://github.com/animekkk/twitch-enhancer

[email protected]                    

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

नाम Twitch Enhancer Twitch Enhancer
ID knaodoefkjbgmmilogebghadhmnphjih
आधिकारिक URL https://chromewebstore.google.com/detail/twitch-enhancer/knaodoefkjbgmmilogebghadhmnphjih
विवरण Extension that adds what is missing on Twitch.
फ़ाइल का आकार 517 KB
स्थापना संख्या 20,000
वर्तमान संस्करण 4.0.14
अंतिम अपडेट 2024-02-27
प्रकाशन तिथि 2021-11-09
रेटिंग 4.00/5 कुल 38 रेटिंग्स
डेवलपर https://enhancer.pro
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://enhancer.pro
समर्थित भाषाएँ pl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Enhancer",
    "description": "Extension that adds what is missing on Twitch.",
    "version": "4.0.14",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "inject.js",
                "content.js"
            ],
            "all_frames": true,
            "css": [
                "bundle.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "worker.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "index.js",
        "bundle.css",
        "img\/*.png",
        "img\/*.svg",
        "img\/*.jpg",
        "sounds\/*.ogg",
        "sounds\/*.mp3"
    ],
    "permissions": [
        "*:\/\/*.twitch.tv\/*"
    ],
    "icons": {
        "128": "img\/icon.png"
    }
}