Youtube Distraction Filter

Remove distracting elements from youtube

什麼是Youtube Distraction Filter?

Youtube Distraction Filter是由Tom Headifen開發的Chrome擴展程式,該擴展的主要功能是“Remove distracting elements from youtube”。

擴展截圖

screenshot

下載Youtube Distraction Filter擴展crx文件

下載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
官方網址 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"
    ]
}