Twitch player auto-reload

This extension detects video playback errors and auto refreshes the player.

Twitch player auto-reload क्या है?

Twitch player auto-reload patrickvrb द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension detects video playback errors and auto refreshes the player."।

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

screenshot

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

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

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

                        This extension works by polling the screen for the exact error button every second. If so, it will emit an HTML click event to simulate user click, automatically reloading the player for the user, improving watch experience.                    

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

नाम Twitch player auto-reload Twitch player auto-reload
ID npnmdcgbeogghcoainjjnllinmcljmdf
आधिकारिक URL https://chromewebstore.google.com/detail/twitch-player-auto-reload/npnmdcgbeogghcoainjjnllinmcljmdf
विवरण This extension detects video playback errors and auto refreshes the player.
फ़ाइल का आकार 10.84 KB
स्थापना संख्या 321
वर्तमान संस्करण 2.1.0
अंतिम अपडेट 2024-01-10
प्रकाशन तिथि 2023-04-09
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर patrickvrb
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch player auto-reload",
    "version": "2.1.0",
    "description": "This extension detects video playback errors and auto refreshes the player.",
    "author": "Patrick Beal",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "Twitch auto-reload"
    },
    "icons": {
        "16": "reloadIcon16.png",
        "32": "reloadIcon32.png",
        "48": "reloadIcon48.png",
        "128": "reloadIcon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ]
        }
    ]
}