YouTube Members' Chat Filter

Adds a menu to the YouTube chat section where only chats by members are visible.

YouTube Members' Chat Filter란 무엇입니까?

YouTube Members' Chat Filter은(는) kudohamu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a menu to the YouTube chat section where only chats by members are visible."입니다.

확장 프로그램 스크린샷

screenshot

YouTube Members' Chat Filter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Add a menu to the YouTube chat section to show only members' chats.

Many of the users who troll or chat unpleasantly on YouTube are users who are not fans of the streamer enough to become members.
This extension will help keep your mental health clean by allowing you to see only members' chats.                    

확장 프로그램 기본 정보

이름 YouTube Members' Chat Filter YouTube Members' Chat Filter
ID dhmbhehcgemcdcjlfmigebgdjjnconhi
공식 URL https://chromewebstore.google.com/detail/youtube-members-chat-filt/dhmbhehcgemcdcjlfmigebgdjjnconhi
설명 Adds a menu to the YouTube chat section where only chats by members are visible.
파일 크기 11.91 KB
설치 횟수 428
현재 버전 1.0.0
최근 업데이트 2021-06-04
출시 날짜 2021-05-16
평점 5.00/5 총 4 개의 평점
개발자 kudohamu
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kudohamu/youtube-members-chat-filter-extension
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Members' Chat Filter",
    "version": "1.0.0",
    "description": "__MSG_ext_desc__",
    "default_locale": "en",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/live_chat?*",
                "https:\/\/www.youtube.com\/live_chat_replay?*"
            ],
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "resources\/icon.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}