Volume Manager
Control any tab's volume separately
什么是Volume Manager?
Volume Manager是由coherence开发的Chrome扩展程序,该扩展的主要功能是“Control any tab's volume separately”。
扩展截图
下载Volume Manager扩展crx文件
下载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 扩展基本信息
| 名称 | |
| 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:\/\/*\/*"
]
}
]
} | |