Chat Danmaku
Show chat room messages as danmaku when watching live streams.
Что такое Chat Danmaku?
Chat Danmaku - это расширение Chrome, разработанное kevinptt, и его основная функция - "Show chat room messages as danmaku when watching live streams.".
Снимки экрана расширения
Скачать файл CRX расширения Chat Danmaku
Скачайте файлы расширений Chat Danmaku в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Show chat room messages as danmaku when watching live streams.
Support sites:
- Twitch
- Garena Live
Note: We don't guarantee that it always works correctly and perfectly. If you encounter any problems or bugs, try to refresh page first. Основная информация о расширении
| Название | |
| ID | mgahhhpmjdpnieacpcmjfegnoehameap |
| Официальный URL | https://chromewebstore.google.com/detail/chat-danmaku/mgahhhpmjdpnieacpcmjfegnoehameap |
| Описание | Show chat room messages as danmaku when watching live streams. |
| Размер файла | 62.84 KB |
| Количество установок | 19 |
| Текущая Версия | 1.3.0 |
| Последнее Обновление | 2018-09-30 |
| Дата публикации | 2018-09-30 |
| Рейтинг | 5.00/5 Всего 4 оценок |
| Разработчик | kevinptt |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/kevinptt0323/chat-danmaku |
| URL страницы помощи | https://github.com/kevinptt0323/chat-danmaku/issues |
| Поддерживаемые языки | en,zh-TW |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_appName__",
"description": "__MSG_appDescription__",
"version": "1.3.0",
"homepage_url": "https:\/\/github.com\/kevinptt0323\/chat-danmaku",
"icons": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"browser_action": {
"default_popup": "options\/index.html"
},
"default_locale": "en",
"options_ui": {
"page": "options\/index.html",
"open_in_tab": false
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/garena.live\/*",
"*:\/\/www.twitch.tv\/*"
],
"js": [
"index.js"
],
"css": [
"index.css"
]
}
]
} | |