YouTube: Play Only Audio
Turn off video of any YouTube video and play only its audio.
Was ist YouTube: Play Only Audio?
YouTube: Play Only Audio ist eine Chrome-Erweiterung, die von https://dhaval.xyz entwickelt wurde, und ihr Hauptmerkmal ist "Turn off video of any YouTube video and play only its audio.".
Erweiterungsscreenshots
YouTube: Play Only Audio-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube: Play Only Audio-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | YouTube: Play Only Audio |
ID | abbndgdlfmdnhpnjpbeeioojnbfcakmo |
Offizielle URL | https://chromewebstore.google.com/detail/youtube-play-only-audio/abbndgdlfmdnhpnjpbeeioojnbfcakmo |
Beschreibung | Turn off video of any YouTube video and play only its audio. |
Dateigröße | 11.6 KB |
Installationsanzahl | 33 |
Aktuelle Version | 1.0.5 |
Letztes Update | 2021-01-14 |
Veröffentlichungsdatum | 2021-01-10 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://dhaval.xyz |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } ] } |