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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Turn off video of any YouTube video and play only its audio."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube: Play Only Audio एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}