YT-ChatToChannel

YouTubeライブのチャットからユーザーのチャンネルに移動します。

YT-ChatToChannel란 무엇입니까?

YT-ChatToChannel은(는) mymabishain에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "YouTubeライブのチャットからユーザーのチャンネルに移動します。"입니다.

확장 프로그램 스크린샷

screenshot

YT-ChatToChannel 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        YouTubeライブでは現在のチャットからチャンネルに移動することが出来ません。

この拡張機能ではそれを可能にしております。

youtubeライブのモデレーターの方はこの拡張機能を使用し
なりすましを防止出来ます。

使い方:
拡張機能を導入後
チャットのアイコンをクリックすると別タブにてユーザーのチャンネルページが表示されます。

注意事項:
チャンネルが正しく表示されない場合は一度ライブページを更新して再度アイコンをクリックしてください。                    

확장 프로그램 기본 정보

이름 YT-ChatToChannel YT-ChatToChannel
ID obdgcbahccikfdekeofjpafkmndkfofe
공식 URL https://chromewebstore.google.com/detail/yt-chattochannel/obdgcbahccikfdekeofjpafkmndkfofe
설명 YouTubeライブのチャットからユーザーのチャンネルに移動します。
파일 크기 10.88 KB
설치 횟수 1,600
현재 버전 0.0.5
최근 업데이트 2022-08-29
출시 날짜 2021-11-16
평점 4.50/5 총 4 개의 평점
개발자 mymabishain
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://twitter.com/maimabishain
지원되는 언어 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YT-ChatToChannel",
    "version": "0.0.5",
    "icons": {
        "128": "icon.png"
    },
    "description": "YouTube\u30e9\u30a4\u30d6\u306e\u30c1\u30e3\u30c3\u30c8\u304b\u3089\u30e6\u30fc\u30b6\u30fc\u306e\u30c1\u30e3\u30f3\u30cd\u30eb\u306b\u79fb\u52d5\u3057\u307e\u3059\u3002",
    "host_permissions": [
        "*:\/\/www.youtube.com\/*",
        "*:\/\/studio.youtube.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "permissions": [
        "webRequest"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/studio.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}