Twitch player auto-reload
This extension detects video playback errors and auto refreshes the player.
Twitch player auto-reloadとは何ですか?
Twitch player auto-reloadはpatrickvrbによって開発されたChromeの拡張機能で、その主な機能は「This extension detects video playback errors and auto refreshes the player.」です。
拡張機能のスクリーンショット
Twitch player auto-reload拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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\/*" ] } ] } |