Twitch Error AutoRefresher
This extension will automatically refresh twitch stream whenever any error occurs.
Twitch Error AutoRefresherคืออะไร?
Twitch Error AutoRefresher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dziango และคุณลักษณะหลักของมันคือ "This extension will automatically refresh twitch stream whenever any error occurs."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Error AutoRefresher
ดาวน์โหลดไฟล์ส่วนขยาย Twitch Error AutoRefresher ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } ] } |