Twitch player auto-reload
This extension detects video playback errors and auto refreshes the player.
Apa itu Twitch player auto-reload?
Twitch player auto-reload adalah ekstensi Chrome yang dikembangkan oleh patrickvrb, dan fitur utamanya adalah "This extension detects video playback errors and auto refreshes the player.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Twitch player auto-reload
Unduh file ekstensi Twitch player auto-reload dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Twitch player auto-reload |
ID | npnmdcgbeogghcoainjjnllinmcljmdf |
URL Resmi | https://chromewebstore.google.com/detail/twitch-player-auto-reload/npnmdcgbeogghcoainjjnllinmcljmdf |
Deskripsi | This extension detects video playback errors and auto refreshes the player. |
Ukuran File | 10.84 KB |
Jumlah Instalasi | 321 |
Versi Saat Ini | 2.1.0 |
Terakhir Diperbarui | 2024-01-10 |
Tanggal Publikasi | 2023-04-09 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | patrickvrb |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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\/*" ] } ] } |