Music Mode for YouTube

The distraction-free way to listen to music on YouTube.

What is Music Mode for YouTube?

Music Mode for YouTube is a Chrome extension developed by dotspencer, and its main feature is "The distraction-free way to listen to music on YouTube.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Music Mode for YouTube Extension CRX File

Download Music Mode for 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

                        Built for those who like to listen to music on YouTube but don't want to be distracted. Perfect for use at work or school. 

Works by redirecting all YouTube links to a distraction-free listening page. This allows you to click on videos in search engine results like you normally would.

Functionality can easily be disabled using the toggle switch for times you want to see the normal video page.                    

Extension Basic Information

Name Music Mode for YouTube Music Mode for YouTube
ID jeieekjcmkhfffleemgbiooooockfmha
Official URL https://chromewebstore.google.com/detail/music-mode-for-youtube/jeieekjcmkhfffleemgbiooooockfmha
Description The distraction-free way to listen to music on YouTube.
File Size 33.26 KB
Installation Count 3,549
Current Version 0.2
Last Updated 2020-11-18
Publish Date 2020-06-23
Rating 3.50/5 Total 10 Ratings
Developer dotspencer
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Music Mode for YouTube",
    "version": "0.2",
    "description": "The distraction-free way to listen to music on YouTube.",
    "browser_action": {
        "default_title": "Music Mode for YouTube",
        "default_popup": "pages\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/watch?v=*"
            ],
            "run_at": "document_start",
            "js": [
                "inject.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "assets\/icon-16.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "manifest_version": 2
}