YouTube Shorts Volume Control
Allows a convenient slider based UI element for controlling volume in youtube shorts UI
Что такое YouTube Shorts Volume Control?
YouTube Shorts Volume Control - это расширение Chrome, разработанное Priya, и его основная функция - "Allows a convenient slider based UI element for controlling volume in youtube shorts UI".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Shorts Volume Control
Скачайте файлы расширений YouTube Shorts Volume Control в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension caters to everyone who is searching for a extension to control the volume of youtube shorts in their PC. This functionaility is currently missing on web based UI on laptops and PCs. This extension adds an UI element, as a convenient range slider that helps the user to control the volume of youtube shorts in a fine grained manner. Fixed some small bugs.
Основная информация о расширении
Название | YouTube Shorts Volume Control |
ID | iocnlgcooancaojnpkonjpcocmcjkgle |
Официальный URL | https://chromewebstore.google.com/detail/youtube-shorts-volume-con/iocnlgcooancaojnpkonjpcocmcjkgle |
Описание | Allows a convenient slider based UI element for controlling volume in youtube shorts UI |
Размер файла | 4.57 KB |
Количество установок | 68 |
Текущая Версия | 0.0.3 |
Последнее Обновление | 2023-11-25 |
Дата публикации | 2023-11-23 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Priya |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Shorts Volume Control", "version": "0.0.3", "description": "Allows a convenient slider based UI element for controlling volume in youtube shorts UI", "permissions": [ "tabs" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_end" } ], "action": { "default_icon": [], "default_title": "Youtube Shorts Vol Control", "default_popup": "popup.html" }, "manifest_version": 3 } |