Youtube Chat Recorder
App to operate streaming chat.
What is Youtube Chat Recorder?
Youtube Chat Recorder is a Chrome extension developed by mbs-code, and its main feature is "App to operate streaming chat.".
Extension Screenshots
Download Youtube Chat Recorder Extension CRX File
Download Youtube Chat Recorder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
YouTube のチャットがあるページ(ライブ、アーカイブ等)を開いた際に、チャットを監視し操作する拡張機能です。 全ての機能はローカル環境で使用可能で、外部に送信されることはありません。
Extension Basic Information
Name | Youtube Chat Recorder |
ID | jfpgcnfhgekhpggplcicbakkcnkhhebk |
Official URL | https://chromewebstore.google.com/detail/youtube-chat-recorder/jfpgcnfhgekhpggplcicbakkcnkhhebk |
Description | App to operate streaming chat. |
File Size | 2.12 MB |
Installation Count | 228 |
Current Version | 1.0.0 |
Last Updated | 2021-01-12 |
Publish Date | 2021-01-12 |
Developer | mbs-code |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } |