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文件

下载YouTube Members' Chat Filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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": [
                ""
            ]
        }
    ]
}