Volume Manager

Control any tab's volume separately

什麼是Volume Manager?

Volume Manager是由coherence開發的Chrome擴展程式,該擴展的主要功能是“Control any tab's volume separately”。

擴展截圖

screenshot

下載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                    

擴展基本資訊

名稱 Volume Manager Volume Manager
ID imhcgcnjkibjikdbdgnhclihigkooeaf
官方網址 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:\/\/*\/*"
            ]
        }
    ]
}