Youtube Chat Recorder
App to operate streaming chat.
什么是Youtube Chat Recorder?
Youtube Chat Recorder是由mbs-code开发的Chrome扩展程序,该扩展的主要功能是“App to operate streaming chat.”。
扩展截图
下载Youtube Chat Recorder扩展crx文件
下载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\/*"
    ]
}  |  |