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.".
Снимки экрана расширения
Скачать файл 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 |
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" } ] } |