YouTube: Play Only Audio

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

Cos'è YouTube: Play Only Audio?

YouTube: Play Only Audio è un'estensione di Chrome sviluppata da https://dhaval.xyz, e la sua funzione principale è "Turn off video of any YouTube video and play only its audio.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione YouTube: Play Only Audio

Scarica i file di estensione YouTube: Play Only Audio in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome YouTube: Play Only Audio YouTube: Play Only Audio
ID abbndgdlfmdnhpnjpbeeioojnbfcakmo
URL Ufficiale https://chromewebstore.google.com/detail/youtube-play-only-audio/abbndgdlfmdnhpnjpbeeioojnbfcakmo
Descrizione Turn off video of any YouTube video and play only its audio.
Dimensione del File 11.6 KB
Conteggio Installazioni 33
Versione Corrente 1.0.5
Ultimo Aggiornamento 2021-01-14
Data di Pubblicazione 2021-01-10
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://dhaval.xyz
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}