YouTube Live chat filter

YouTube Live のチャットで NG ワードを含むものを非表示にする。

YouTube Live chat filterคืออะไร?

YouTube Live chat filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย PND และคุณลักษณะหลักของมันคือ "YouTube Live のチャットで NG ワードを含むものを非表示にする。"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Live chat filter

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Live chat filter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        - NG ワードを自由に設定
- ライブ配信、アーカイブ、プレミア公開に対応

## 使用方法
インストール後、アドレスバーの右にある拡張機能のアイコンを左クリックし、非表示にしたい NG ワードを一行ごとに入力してください。

## お問い合わせ、バグ報告など
Twitter または GitHub issue によろしくお願いいたします。
https://twitter.com/__P_N_D__
https://github.com/swen128/youtube-live-chat-filter/issues                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ YouTube Live chat filter YouTube Live chat filter
ID noekfhlpihlpicbghhjiflhgkfgcikjh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-live-chat-filter/noekfhlpihlpicbghhjiflhgkfgcikjh
คำอธิบาย YouTube Live のチャットで NG ワードを含むものを非表示にする。
ขนาดไฟล์ 13.75 KB
จำนวนการติดตั้ง 7,348
เวอร์ชันปัจจุบัน 0.2.1
อัปเดตครั้งล่าสุด 2019-11-18
วันที่เผยแพร่ 2019-11-17
คะแนน 4.29/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา PND
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/swen128/youtube-live-chat-filter
URL หน้าช่วยเหลือ https://github.com/swen128/youtube-live-chat-filter/issues
ภาษาที่รองรับ ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Live chat filter",
    "version": "0.2.1",
    "description": "YouTube Live \u306e\u30c1\u30e3\u30c3\u30c8\u3067 NG \u30ef\u30fc\u30c9\u3092\u542b\u3080\u3082\u306e\u3092\u975e\u8868\u793a\u306b\u3059\u308b\u3002",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_popup": "options.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": true,
            "matches": [
                "https:\/\/*.youtube.com\/live_chat*",
                "https:\/\/gaming.youtube.com\/watch*",
                "https:\/\/gaming.youtube.com\/channel\/*\/live"
            ],
            "js": [
                "watch.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/code.getmdl.io\/; object-src 'self'",
    "manifest_version": 2
}