Youtube zen mode

Improved layout, dark mode, removable recommendations and comment section.

What is Youtube zen mode?

Youtube zen mode is a Chrome extension developed by Adrien Coffre, and its main feature is "Improved layout, dark mode, removable recommendations and comment section.".

Extension Screenshots

screenshot

Download Youtube zen mode Extension CRX File

Download Youtube zen mode 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

                        Allows to tailor hidden sections (comments, recommendations) and implements a dark mode                    

Extension Basic Information

Name Youtube zen mode Youtube zen mode
ID aeblekonbpcjmpcmodmonjcgdcdemdig
Official URL https://chromewebstore.google.com/detail/youtube-zen-mode/aeblekonbpcjmpcmodmonjcgdcdemdig
Description Improved layout, dark mode, removable recommendations and comment section.
File Size 24.7 KB
Installation Count 24
Current Version 0.0.1
Last Updated 2020-04-15
Publish Date 2020-04-15
Rating 5.00/5 Total 3 Ratings
Developer Adrien Coffre
Payment Type free
Help Page URL https://github.com/Astrak/youtube-zen-mode
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube zen mode",
    "version": "0.0.1",
    "description": "Improved layout, dark mode, removable recommendations and comment section.",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/yzm16.png",
            "32": "images\/yzm32.png",
            "48": "images\/yzm48.png",
            "128": "images\/yzm128.png"
        }
    },
    "icons": {
        "16": "images\/yzm16.png",
        "32": "images\/yzm32.png",
        "48": "images\/yzm48.png",
        "128": "images\/yzm128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "all_frames": true,
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ]
        }
    ]
}