YouTube TV Volume control
Runs on Youtube.com/TV and adds volume control to the player controls panel
Что такое YouTube TV Volume control?
YouTube TV Volume control - это расширение Chrome, разработанное Anton Shashok, и его основная функция - "Runs on Youtube.com/TV and adds volume control to the player controls panel".
Снимки экрана расширения
Скачать файл CRX расширения YouTube TV Volume control
Скачайте файлы расширений YouTube TV Volume control в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Version 1.0.2.4 Removed Extra host loading. Added some design. Version 0.9.8.1 New Youtube App support Version 0.8.1 Fix: Your Device Type is no longer supported. Version 0.7.5 YouTube update fix Version 0.7.2 Position fix Version 0.7.1 Now you can use + / - keys to control volume! Due to changes made to YouTube TV. It needs to be updated. Enjoy!
Основная информация о расширении
Название | YouTube TV Volume control |
ID | mpkdmnddeijnncnnbmoilipjadjhnidd |
Официальный URL | https://chromewebstore.google.com/detail/youtube-tv-volume-control/mpkdmnddeijnncnnbmoilipjadjhnidd |
Описание | Runs on Youtube.com/TV and adds volume control to the player controls panel |
Размер файла | 73.77 KB |
Количество установок | 1,237 |
Текущая Версия | 1.0.2.4 |
Последнее Обновление | 2020-12-28 |
Дата публикации | 2020-06-22 |
Рейтинг | 3.64/5 Всего 14 оценок |
Разработчик | Anton Shashok |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube TV Volume control", "version": "1.0.2.4", "description": "Runs on Youtube.com\/TV and adds volume control to the player controls panel", "manifest_version": 2, "background": { "persistent": true, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [], "browser_action": { "default_icon": "img\/icon-19-grey.png", "default_title": "YouTubeTVPanel", "icons": { "48": "img\/icon-48.png", "19": "img\/icon-19-grey.png", "128": "img\/icon-128.png" } }, "icons": { "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "permissions": [ "tabs", "webRequest", "webRequestBlocking", "*:\/\/*.youtube.com\/*", "*:\/\/youtube.com\/tv" ] } |