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 | 
| 官方網址 | 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\/*"
    ]
}  |  |