Yet Another YouTube Comment Filter

Filters comments on YouTube.

Yet Another YouTube Comment Filterคืออะไร?

Yet Another YouTube Comment Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yosuke Mizutani และคุณลักษณะหลักของมันคือ "Filters comments on YouTube."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Yet Another YouTube Comment Filter

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

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

                        This extension provides a comment filter on YouTube.

- Language Filter: You can configure the languages you want to see.
- Blocked Words: You can hide the comments that include specific keywords.
- Reply Filter: You can filter replies in addition to independent comments.
- Filter On/Off Button: You can turn on/off the filter for each tab.                    

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

ชื่อ Yet Another YouTube Comment Filter Yet Another YouTube Comment Filter
ID kdmngkpgnecnahcpkdcmbcekonkcbdpc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/yet-another-youtube-comme/kdmngkpgnecnahcpkdcmbcekonkcbdpc
คำอธิบาย Filters comments on YouTube.
ขนาดไฟล์ 113 KB
จำนวนการติดตั้ง 841
เวอร์ชันปัจจุบัน 0.2.1
อัปเดตครั้งล่าสุด 2022-05-03
วันที่เผยแพร่ 2021-01-03
คะแนน 4.25/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Yosuke Mizutani
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mogproject/yay-filter
ภาษาที่รองรับ en,ru,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Yet Another YouTube Comment Filter",
    "version": "0.2.1",
    "description": "Filters comments on YouTube.",
    "author": "Yosuke Mizutani",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/browser-polyfill.min.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/browser-polyfill.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/yay-filter.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_title": "Yay Filter",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/yayFilterIcon16.png",
        "32": "icons\/yayFilterIcon32.png",
        "48": "icons\/yayFilterIcon48.png",
        "96": "icons\/yayFilterIcon96.png",
        "128": "icons\/yayFilterIcon128.png"
    },
    "homepage_url": "https:\/\/github.com\/mogproject\/yay-filter",
    "default_locale": "en"
}