Youtube Distraction Filter

Remove distracting elements from youtube

Youtube Distraction Filterคืออะไร?

Youtube Distraction Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tom Headifen และคุณลักษณะหลักของมันคือ "Remove distracting elements from youtube"

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

screenshot

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

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

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

                        This Chrome extension by default will remove the comment section and related video section whenever you are watching a video.

This helps users not get distracted by participating in pointless conversation or getting fooled by click bait videos.

Known bugs:
-If you navigate to a video from within the youtube website the filter will not kick in. It will only work if you navigate straight to the video from a different website/link.

Change Log:
September 4th 2017:
-Youtube recently had an update, changed fields names that are targeted to be filtered to keep up with these changes.

August 5th 2019
-Fixed bug where related videos wouldn't hide.                    

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

ชื่อ Youtube Distraction Filter Youtube Distraction Filter
ID bcbpflcbmnnpdhjmfblndddmoimlimbf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-distraction-filte/bcbpflcbmnnpdhjmfblndddmoimlimbf
คำอธิบาย Remove distracting elements from youtube
ขนาดไฟล์ 7.3 KB
จำนวนการติดตั้ง 99
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2019-08-06
วันที่เผยแพร่ 2019-08-05
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Tom Headifen
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/tomheadifen/youtube-distraction-filter
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Distraction Filter",
    "description": "Remove distracting elements from youtube",
    "version": "1.0.2",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "eye-icon.png",
        "default_title": "Youtube Distraction Filter",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "youtube-distraction-filter.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "declarativeContent",
        "storage"
    ]
}