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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
        }
    ]
}