Music Mode for YouTube

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

什么是Music Mode for YouTube?

Music Mode for YouTube是由dotspencer开发的Chrome扩展程序,该扩展的主要功能是“The distraction-free way to listen to music on YouTube.”。

扩展截图

screenshot
screenshot
screenshot

下载Music Mode for YouTube扩展crx文件

下载Music Mode for YouTube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Music Mode for YouTube Music Mode for YouTube
ID jeieekjcmkhfffleemgbiooooockfmha
官方URL https://chromewebstore.google.com/detail/music-mode-for-youtube/jeieekjcmkhfffleemgbiooooockfmha
简介 The distraction-free way to listen to music on YouTube.
文件大小 33.26 KB
安装次数 3,549
当前版本 0.2
更新时间 2020-11-18
上架时间 2020-06-23
评分 3.50/5 共10次评分
开发者 dotspencer
电子邮箱 [email protected]
付费类型 free
支持的语言 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
}