Twitch Error AutoRefresher
This extension will automatically refresh twitch stream whenever any error occurs.
Twitch Error AutoRefresher क्या है?
Twitch Error AutoRefresher Dziango द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will automatically refresh twitch stream whenever any error occurs."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitch Error AutoRefresher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension will automatically refresh twitch stream whenever any error occurs. Particularly useful when you watch a stream on another screen (another chrome window) or just listen to it from another tab. It works with error #2000, #3000, #4000 etc. This extension is an open source project. You can check the code here: https://github.com/Dziango/Twitch-Autorefresher-error-2000
एक्सटेंशन की मूल जानकारी
नाम | Twitch Error AutoRefresher |
ID | hhiipkcjbemmanpfdfdkhmfjpliniomn |
आधिकारिक URL | https://chromewebstore.google.com/detail/twitch-error-autorefreshe/hhiipkcjbemmanpfdfdkhmfjpliniomn |
विवरण | This extension will automatically refresh twitch stream whenever any error occurs. |
फ़ाइल का आकार | 15.44 KB |
स्थापना संख्या | 4,082 |
वर्तमान संस्करण | 4 |
अंतिम अपडेट | 2023-06-10 |
प्रकाशन तिथि | 2020-05-20 |
रेटिंग | 2.86/5 कुल 51 रेटिंग्स |
डेवलपर | Dziango |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Error AutoRefresher", "short_name": "TwitchReload", "version": "4", "manifest_version": 2, "homepage_url": "https:\/\/github.com\/Dziango", "description": "This extension will automatically refresh twitch stream whenever any error occurs.", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "page_action": { "default_icon": "icon16.png", "default_title": "Twitch Error AutoRefresher" }, "content_scripts": [ { "matches": [ "*:\/\/www.twitch.tv\/*" ], "run_at": "document_idle", "js": [ "content.js" ] } ] } |