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
官方網址 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
}