Youtube Chat Recorder

App to operate streaming chat.

Youtube Chat Recorder란 무엇입니까?

Youtube Chat Recorder은(는) mbs-code에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "App to operate streaming chat."입니다.

확장 프로그램 스크린샷

screenshot

Youtube Chat Recorder 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 Youtube Chat Recorder Youtube Chat Recorder
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\/*"
    ]
}