Distraction Free YouTube

YouTube with less distraction!

What is Distraction Free YouTube?

Distraction Free YouTube is a Chrome extension developed by developer.4af2c, and its main feature is "YouTube with less distraction!".

Extension Screenshots

screenshot
screenshot
screenshot

Download Distraction Free YouTube Extension CRX File

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

                        This extension blocks the home page, explore page, side bar, end screen video tile, and YouTube Shorts.

the project is open source: https://github.com/dwssv/distraction-free-youtube                    

Extension Basic Information

Name Distraction Free YouTube Distraction Free YouTube
ID cjfomfbgjppmmipmjdfpcjlilpjbahli
Official URL https://chromewebstore.google.com/detail/distraction-free-youtube/cjfomfbgjppmmipmjdfpcjlilpjbahli
Description YouTube with less distraction!
File Size 484 KB
Installation Count 31
Current Version 1.0.2
Last Updated 2022-05-14
Publish Date 2022-03-27
Rating 5.00/5 Total 2 Ratings
Developer developer.4af2c
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Distraction Free YouTube",
    "description": "YouTube with less distraction!",
    "version": "1.0.2",
    "manifest_version": 3,
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "declarativeNetRequest"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}