YouTube Distraction Killer

Remove distracting elements from YouTube's layout

What is YouTube Distraction Killer?

YouTube Distraction Killer is a Chrome extension developed by nizioleque, and its main feature is "Remove distracting elements from YouTube's layout".

Extension Screenshots

screenshot
screenshot

Download YouTube Distraction Killer Extension CRX File

Download YouTube Distraction Killer 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

                        Do you find yourself watching cute kitten videos instead of educational content all the time?

Get rid of all the reccomendations, suggestions, comments and other tempting buttons!
Easily choose what is hidden using the options menu!

If you experience any issues, please feel free to email me with a bug report.                    

Extension Basic Information

Name YouTube Distraction Killer YouTube Distraction Killer
ID pahjidceabkifggkmokpmlmhoaiflaeh
Official URL https://chromewebstore.google.com/detail/youtube-distraction-kille/pahjidceabkifggkmokpmlmhoaiflaeh
Description Remove distracting elements from YouTube's layout
File Size 28.3 KB
Installation Count 153
Current Version 1.3
Last Updated 2022-04-19
Publish Date 2022-04-19
Rating 4.75/5 Total 4 Ratings
Developer nizioleque
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.3",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "options\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    }
}