Youtube Comment Filter

Chrome extension that filters Youtube comments

Youtube Comment Filterคืออะไร?

Youtube Comment Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jasonleeapps และคุณลักษณะหลักของมันคือ "Chrome extension that filters Youtube comments"

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

screenshot

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

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

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

                        A Chrome extension that lets you filter YouTube comments.

Navigate to a YouTube video and enter what words you would like to filter out!                    

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

ชื่อ Youtube Comment Filter Youtube Comment Filter
ID dbdnmgjgahjbdkonhiplfoljljebfchm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-comment-filter/dbdnmgjgahjbdkonhiplfoljljebfchm
คำอธิบาย Chrome extension that filters Youtube comments
ขนาดไฟล์ 13.05 KB
จำนวนการติดตั้ง 417
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-06-14
วันที่เผยแพร่ 2020-06-10
คะแนน 3.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา jasonleeapps
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Comment Filter",
    "version": "1.0",
    "description": "Chrome extension that filters Youtube comments",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/yt_icon_16.png",
        "48": "images\/yt_icon_48.png",
        "128": "images\/yt_icon_128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/watch?v=*"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}