Twitch player auto-reload
This extension detects video playback errors and auto refreshes the player.
Twitch player auto-reloadคืออะไร?
Twitch player auto-reload เป็นส่วนขยายของ Chrome ที่พัฒนาโดย patrickvrb และคุณลักษณะหลักของมันคือ "This extension detects video playback errors and auto refreshes the player."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch player auto-reload
ดาวน์โหลดไฟล์ส่วนขยาย Twitch player auto-reload ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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\/*" ] } ] } |