Youtube Distraction Filter

Remove distracting elements from youtube

Youtube Distraction Filter là gì?

Youtube Distraction Filter là một tiện ích mở rộng Chrome được phát triển bởi Tom Headifen, và tính năng chính của nó là "Remove distracting elements from youtube".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube Distraction Filter

Tải xuống các tệp mở rộng Youtube Distraction Filter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Youtube Distraction Filter Youtube Distraction Filter
ID bcbpflcbmnnpdhjmfblndddmoimlimbf
URL Chính Thức https://chromewebstore.google.com/detail/youtube-distraction-filte/bcbpflcbmnnpdhjmfblndddmoimlimbf
Mô tả Remove distracting elements from youtube
Kích Thước Tệp 7.3 KB
Số Lần Cài Đặt 99
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2019-08-06
Ngày Phát Hành 2019-08-05
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Tom Headifen
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tomheadifen/youtube-distraction-filter
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}