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
Eメール [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
}