Volume Manager
Control any tab's volume separately
Что такое Volume Manager?
Volume Manager - это расширение Chrome, разработанное coherence, и его основная функция - "Control any tab's volume separately".
Снимки экрана расширения
Скачать файл CRX расширения Volume Manager
Скачайте файлы расширений Volume Manager в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
An open-source plugin to control any tab's volume separately. Do note that once you started modifying volume: - You cannot toggle fullscreen of this tab. This is due to the Chrome API limitation. - Your system may not go into sleep/suspend/monitor off because Chrome will mark the current tab is "capturing" and inhibit doing so. Source code: https://github.com/cjc7373/chrome-volume-manager
Основная информация о расширении
Название | Volume Manager |
ID | imhcgcnjkibjikdbdgnhclihigkooeaf |
Официальный URL | https://chromewebstore.google.com/detail/volume-manager/imhcgcnjkibjikdbdgnhclihigkooeaf |
Описание | Control any tab's volume separately |
Размер файла | 171 KB |
Количество установок | 617 |
Текущая Версия | 2.0.0 |
Последнее Обновление | 2023-11-18 |
Дата публикации | 2021-03-05 |
Рейтинг | 4.83/5 Всего 6 оценок |
Разработчик | coherence |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/cjc7373/chrome-volume-manager |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Volume Manager", "version": "2.0.0", "description": "Control any tab's volume separately", "permissions": [ "activeTab", "tabCapture", "offscreen" ], "action": { "default_icon": "icon.e84ebc53.png", "default_popup": "popup.c91b8cbb.html" }, "background": { "service_worker": "background.538a6b63.js" }, "icons": { "512": "icon.e84ebc53.png" }, "web_accessible_resources": [ { "resources": [ "offscreen.html" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ] } |