Youtube Chat Recorder

App to operate streaming chat.

Youtube Chat Recorder là gì?

Youtube Chat Recorder là một tiện ích mở rộng Chrome được phát triển bởi mbs-code, và tính năng chính của nó là "App to operate streaming chat.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube Chat Recorder

Tải xuống các tệp mở rộng Youtube Chat Recorder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        YouTube のチャットがあるページ(ライブ、アーカイブ等)を開いた際に、チャットを監視し操作する拡張機能です。
全ての機能はローカル環境で使用可能で、外部に送信されることはありません。                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Youtube Chat Recorder Youtube Chat Recorder
ID jfpgcnfhgekhpggplcicbakkcnkhhebk
URL Chính Thức https://chromewebstore.google.com/detail/youtube-chat-recorder/jfpgcnfhgekhpggplcicbakkcnkhhebk
Mô tả App to operate streaming chat.
Kích Thước Tệp 2.12 MB
Số Lần Cài Đặt 228
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-01-12
Ngày Phát Hành 2021-01-12
Nhà Phát Triển mbs-code
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}