Volume Manager
Control any tab's volume separately
What is Volume Manager?
Volume Manager is a Chrome extension developed by coherence, and its main feature is "Control any tab's volume separately".
Extension Screenshots
Download Volume Manager Extension CRX File
Download Volume Manager extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Volume Manager |
ID | imhcgcnjkibjikdbdgnhclihigkooeaf |
Official URL | https://chromewebstore.google.com/detail/volume-manager/imhcgcnjkibjikdbdgnhclihigkooeaf |
Description | Control any tab's volume separately |
File Size | 171 KB |
Installation Count | 617 |
Current Version | 2.0.0 |
Last Updated | 2023-11-18 |
Publish Date | 2021-03-05 |
Rating | 4.83/5 Total 6 Ratings |
Developer | coherence |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/cjc7373/chrome-volume-manager |
Supported Languages | 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:\/\/*\/*" ] } ] } |