YouTube Comment Remover

A very simple extension to hide all YouTube comments.

YouTube Comment Removerคืออะไร?

YouTube Comment Remover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tim Stephani และคุณลักษณะหลักของมันคือ "A very simple extension to hide all YouTube comments."

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

screenshot

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

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

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

                        After realizing how horrible the comments section of YouTube is, I decided to create this super simple extension to automatically hide them.

Source available here: https://github.com/timmystephani/youtube_comment_remover

History
---------
v1.0 - First version                    

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

ชื่อ YouTube Comment Remover YouTube Comment Remover
ID nglipklighejjehapaodhmipldpljobp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-comment-remover/nglipklighejjehapaodhmipldpljobp
คำอธิบาย A very simple extension to hide all YouTube comments.
ขนาดไฟล์ 33.33 KB
จำนวนการติดตั้ง 97
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2015-03-16
วันที่เผยแพร่ 2015-03-16
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Tim Stephani
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Comment Remover",
    "description": "A very simple extension to hide all YouTube comments.",
    "version": "1.0",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "main.js"
            ]
        }
    ]
}