YouTube: Play Only Audio

Turn off video of any YouTube video and play only its audio.

YouTube: Play Only Audioとは何ですか?

YouTube: Play Only Audioはhttps://dhaval.xyzによって開発されたChromeの拡張機能で、その主な機能は「Turn off video of any YouTube video and play only its audio.」です。

拡張機能のスクリーンショット

screenshot
screenshot

YouTube: Play Only Audio拡張機能のCRXファイルをダウンロード

YouTube: Play Only Audio拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Adds a "VIDEO: ON/OFF" toggle button to the YouTube video player to allow you to quickly and easily turn off video of any YouTube video and play only its audio.

This extension works on individual tabs meaning you can disable video playback in one window or tab and have it enabled in another.

Note:
Ad-blocking software might affect the functioning of this extension.
This extension may not work with live videos.                    

拡張機能の基本情報

名前 YouTube: Play Only Audio YouTube: Play Only Audio
ID abbndgdlfmdnhpnjpbeeioojnbfcakmo
公式URL https://chromewebstore.google.com/detail/youtube-play-only-audio/abbndgdlfmdnhpnjpbeeioojnbfcakmo
説明 Turn off video of any YouTube video and play only its audio.
ファイルサイズ 11.6 KB
インストール数 33
現在のバージョン 1.0.5
最終更新日 2021-01-14
公開日 2021-01-10
評価 5.00/5 合計 1 レビュー
開発者 https://dhaval.xyz
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube: Play Only Audio",
    "version": "1.0.5",
    "description": "Turn off video of any YouTube video and play only its audio.",
    "permissions": [
        "webRequest",
        "*:\/\/www.youtube.com\/*",
        "*:\/\/*.googlevideo.com\/*"
    ],
    "icons": {
        "16": "assets\/[email protected]",
        "32": "assets\/[email protected]",
        "48": "assets\/[email protected]",
        "96": "assets\/[email protected]",
        "128": "assets\/[email protected]"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "youtube.js"
            ],
            "run_at": "document_start"
        }
    ]
}