Youtube Chat Recorder
App to operate streaming chat.
Что такое Youtube Chat Recorder?
Youtube Chat Recorder - это расширение Chrome, разработанное mbs-code, и его основная функция - "App to operate streaming chat.".
Снимки экрана расширения
Скачать файл CRX расширения Youtube Chat Recorder
Скачайте файлы расширений Youtube Chat Recorder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
YouTube のチャットがあるページ(ライブ、アーカイブ等)を開いた際に、チャットを監視し操作する拡張機能です。
全ての機能はローカル環境で使用可能で、外部に送信されることはありません。 Основная информация о расширении
| Название | |
| ID | jfpgcnfhgekhpggplcicbakkcnkhhebk |
| Официальный URL | https://chromewebstore.google.com/detail/youtube-chat-recorder/jfpgcnfhgekhpggplcicbakkcnkhhebk |
| Описание | App to operate streaming chat. |
| Размер файла | 2.12 MB |
| Количество установок | 228 |
| Текущая Версия | 1.0.0 |
| Последнее Обновление | 2021-01-12 |
| Дата публикации | 2021-01-12 |
| Разработчик | mbs-code |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Youtube Chat Recorder",
"description": "App to operate streaming chat.",
"version": "1.0.0",
"manifest_version": 2,
"icons": {
"16": "icons\/icon-16x16.png",
"48": "icons\/icon-48x48.png",
"128": "icons\/icon-128x128.png"
},
"browser_action": {
"default_icon": {
"16": "icons\/icon-16x16-grey.png",
"24": "icons\/icon-24x24-grey.png",
"32": "icons\/icon-32x32-grey.png"
},
"default_title": "youtube_chat_recorder",
"default_popup": "popup\/popup.html"
},
"background": {
"scripts": [
"background.js"
]
},
"options_page": "options\/options.html",
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"js": [
"contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"permissions": [
"tabs",
"storage",
"unlimitedStorage",
"https:\/\/*.youtube.com\/*"
]
} | |