Twitch Latency Display
For a quick chating, Displays the latency of the video in the chat input window.
Что такое Twitch Latency Display?
Twitch Latency Display - это расширение Chrome, разработанное sweet, и его основная функция - "For a quick chating, Displays the latency of the video in the chat input window.".
Снимки экрана расширения
Скачать файл CRX расширения Twitch Latency Display
Скачайте файлы расширений Twitch Latency Display в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
When watching a live broadcast on twitch.tv,
For a quick chating, Displays the latency of the video in the chat input window.
features
- Displays the latency time of the live broadcast
- Fast forward stream buffer button (Help when delay times are long)
- Show small video stats Основная информация о расширении
| Название | |
| ID | gfbfblhgcnaceejlekkogpbjjogdealk |
| Официальный URL | https://chromewebstore.google.com/detail/twitch-latency-display/gfbfblhgcnaceejlekkogpbjjogdealk |
| Описание | For a quick chating, Displays the latency of the video in the chat input window. |
| Размер файла | 77.49 KB |
| Количество установок | 2,818 |
| Текущая Версия | 1.1.1 |
| Последнее Обновление | 2023-12-06 |
| Дата публикации | 2022-08-23 |
| Рейтинг | 5.00/5 Всего 24 оценок |
| Разработчик | sweet |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "1.1.1",
"minimum_chrome_version": "105",
"permissions": [
"storage",
"scripting"
],
"host_permissions": [
"*:\/\/*.twitch.tv\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.twitch.tv\/*"
],
"js": [
"\/twitch_locales.js",
"\/script.js"
],
"css": [
"\/twitch.css"
],
"run_at": "document_end"
}
],
"action": {
"default_title": "Twitch Latency Display",
"default_icon": "icon128.png",
"default_popup": "options.html"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"manifest_version": 3
} | |