YouTube: Play Only Audio

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

YouTube: Play Only Audioคืออะไร?

YouTube: Play Only Audio เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://dhaval.xyz และคุณลักษณะหลักของมันคือ "Turn off video of any YouTube video and play only its audio."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube: Play Only Audio

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
        }
    ]
}