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 | 
| Eメール | [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\/*"
    ]
}  |  |