Flow Chat for YouTube Live
Chrome Extension for Flow Chat Messages on YouTube Live.
Что такое Flow Chat for YouTube Live?
Flow Chat for YouTube Live - это расширение Chrome, разработанное szcepani35, и его основная функция - "Chrome Extension for Flow Chat Messages on YouTube Live.".
Снимки экрана расширения
Скачать файл CRX расширения Flow Chat for YouTube Live
Скачайте файлы расширений Flow Chat for YouTube Live в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
- Flow messages over the video.
- Change color, size and speed for messages.
- Show author and avatar on messages.
- Show super chats and super stickers.
- Filter banned words.
- Add helper menu buttons on the chat list. Основная информация о расширении
| Название | |
| ID | elfdpkmfllnhhgnicaaeacbilcallpbd |
| Официальный URL | https://chromewebstore.google.com/detail/flow-chat-for-youtube-liv/elfdpkmfllnhhgnicaaeacbilcallpbd |
| Описание | Chrome Extension for Flow Chat Messages on YouTube Live. |
| Размер файла | 337 KB |
| Количество установок | 62,018 |
| Текущая Версия | 0.1.3 |
| Последнее Обновление | 2023-02-22 |
| Дата публикации | 2022-07-12 |
| Рейтинг | 4.33/5 Всего 36 оценок |
| Разработчик | szcepani35 |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"icons": {
"128": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.youtube.com\/*"
],
"all_frames": false,
"js": [
"content-script.js"
],
"css": [
"content-script.css"
]
},
{
"run_at": "document_start",
"matches": [
"https:\/\/www.youtube.com\/live_chat*"
],
"all_frames": true,
"js": [
"content-script-iframe.js"
],
"css": [
"content-script-iframe.css"
]
}
],
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*"
],
"name": "Flow Chat for YouTube Live",
"description": "Chrome Extension for Flow Chat Messages on YouTube Live.",
"version": "0.1.3"
} | |