YouTube: Play Only Audio
Turn off video of any YouTube video and play only its audio.
Qu'est-ce que YouTube: Play Only Audio ?
YouTube: Play Only Audio est une extension Chrome développée par https://dhaval.xyz, et sa fonction principale est "Turn off video of any YouTube video and play only its audio.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube: Play Only Audio
Téléchargez les fichiers d'extension YouTube: Play Only Audio au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | YouTube: Play Only Audio |
ID | abbndgdlfmdnhpnjpbeeioojnbfcakmo |
URL Officiel | https://chromewebstore.google.com/detail/youtube-play-only-audio/abbndgdlfmdnhpnjpbeeioojnbfcakmo |
Description | Turn off video of any YouTube video and play only its audio. |
Taille du Fichier | 11.6 KB |
Nombre d'Installations | 33 |
Version Actuelle | 1.0.5 |
Dernière Mise à Jour | 2021-01-14 |
Date de Publication | 2021-01-10 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://dhaval.xyz |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |