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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kudohamu และคุณลักษณะหลักของมันคือ "Adds a menu to the YouTube chat section where only chats by members are visible."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Members' Chat Filter

ดาวน์โหลดไฟล์ส่วนขยาย 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": [
                ""
            ]
        }
    ]
}