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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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\/*" ] } ] } |