YouTube Comment Filter

Allows you to filter out Youtube spam.

YouTube Comment Filterคืออะไร?

YouTube Comment Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย averyboyd2 และคุณลักษณะหลักของมันคือ "Allows you to filter out Youtube spam."

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

screenshot

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

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

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

                        YouTube comments can be very annoying and these comments can overrun a discussion thread.
But YouTube's comment reporting is too dependent on the community's idea of what spam is. What users consider to be spam is different from person to person, so there should be a way to filter out what you think is spam for yourself.

This extension is a spam filter for YouTube comments just like any e-mail service would have. It will learn what you consider to be spam and hide any spam it finds from you.

Mark comments as spam as you see fit and unmark any comments you feel were undeservingly marked as spam by clicking on the text as shown.                    

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

ชื่อ YouTube Comment Filter YouTube Comment Filter
ID dhanbbkjemobhmgfldpcaegfhcibknbd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-comment-filter/dhanbbkjemobhmgfldpcaegfhcibknbd
คำอธิบาย Allows you to filter out Youtube spam.
ขนาดไฟล์ 131 KB
จำนวนการติดตั้ง 72
เวอร์ชันปัจจุบัน 1.1.3
อัปเดตครั้งล่าสุด 2015-03-28
วันที่เผยแพร่ 2015-03-28
คะแนน 2.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา averyboyd2
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Comment Filter",
    "description": "Allows you to filter out Youtube spam.",
    "version": "1.1.3",
    "icons": {
        "128": "FilTube128.png",
        "48": "FilTube48.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/apis.google.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "editor.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}