YouTube Distraction Disabler

Remove distracting video suggestions on YouTube.

什麼是YouTube Distraction Disabler?

YouTube Distraction Disabler是由kaiqi.liang開發的Chrome擴展程式,該擴展的主要功能是“Remove distracting video suggestions on YouTube.”。

擴展截圖

screenshot

下載YouTube Distraction Disabler擴展crx文件

下載YouTube Distraction Disabler擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Just spent an hour on YouTube but still haven't got to the video that you set out to watch? Wanted to learn something on YouTube but always get distracted by your recommended feed? Fear no more, "YouTube Distraction Disabler" is here to remove all of the unrelated videos on YouTube and only show you what you want.

Finally got some free time and want to deliberately procrastinate on YouTube? That's ok too, just simply click the extension icon and turn off one of the options that you choose to block. The options are "Home", "Related", "Comments" and "Notifications", which corresponds to your home feed, related videos next to the video you're currently watching, the comments down below as well as the notification bell.                    

擴展基本資訊

名稱 YouTube Distraction Disabler YouTube Distraction Disabler
ID klhmhijgenkomhcobnbdnjkkefbghfab
官方網址 https://chromewebstore.google.com/detail/youtube-distraction-disab/klhmhijgenkomhcobnbdnjkkefbghfab
簡介 Remove distracting video suggestions on YouTube.
檔案大小 12.64 KB
安裝次數 163
目前版本 0.0.4
更新時間 2023-01-18
上架時間 2020-12-07
評分 5.00/5 共 5 次評分
開發者 kaiqi.liang
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/Kaiqi-Liang/YouTube-Distraction-Disabler
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Distraction Disabler",
    "version": "0.0.4",
    "description": "Remove distracting video suggestions on YouTube.",
    "manifest_version": 2,
    "page_action": {
        "default_icon": "assets\/logo.png"
    },
    "icons": {
        "128": "assets\/logo.png"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "extension.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "assets\/*.svg"
    ]
}