Twitch player auto-reload
This extension detects video playback errors and auto refreshes the player.
What is Twitch player auto-reload?
Twitch player auto-reload is a Chrome extension developed by patrickvrb, and its main feature is "This extension detects video playback errors and auto refreshes the player.".
Extension Screenshots
Download Twitch player auto-reload Extension CRX File
Download Twitch player auto-reload extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Twitch player auto-reload |
ID | npnmdcgbeogghcoainjjnllinmcljmdf |
Official URL | https://chromewebstore.google.com/detail/twitch-player-auto-reload/npnmdcgbeogghcoainjjnllinmcljmdf |
Description | This extension detects video playback errors and auto refreshes the player. |
File Size | 10.84 KB |
Installation Count | 321 |
Current Version | 2.1.0 |
Last Updated | 2024-01-10 |
Publish Date | 2023-04-09 |
Rating | 5.00/5 Total 3 Ratings |
Developer | patrickvrb |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } ] } |