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 |
| Eメール | [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:\/\/*\/*"
]
}
]
} | |