YouTube Distraction Disabler

Remove distracting video suggestions on YouTube.

What is YouTube Distraction Disabler?

YouTube Distraction Disabler is a Chrome extension developed by kaiqi.liang, and its main feature is "Remove distracting video suggestions on YouTube.".

Extension Screenshots

screenshot

Download YouTube Distraction Disabler Extension CRX File

Download YouTube Distraction Disabler extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name YouTube Distraction Disabler YouTube Distraction Disabler
ID klhmhijgenkomhcobnbdnjkkefbghfab
Official URL https://chromewebstore.google.com/detail/youtube-distraction-disab/klhmhijgenkomhcobnbdnjkkefbghfab
Description Remove distracting video suggestions on YouTube.
File Size 12.64 KB
Installation Count 163
Current Version 0.0.4
Last Updated 2023-01-18
Publish Date 2020-12-07
Rating 5.00/5 Total 5 Ratings
Developer kaiqi.liang
Email [email protected]
Payment Type free
Extension Website https://github.com/Kaiqi-Liang/YouTube-Distraction-Disabler
Supported Languages 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"
    ]
}