Volume Mixer

A chrome extension to control volume per tab

什么是Volume Mixer?

Volume Mixer是由Gagan Bindoria开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension to control volume per tab”。

扩展截图

screenshot

下载Volume Mixer扩展crx文件

下载Volume Mixer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A simple tool to control volume of each tab with a audio element with easy to use UI.                    

扩展基本信息

名称 Volume Mixer Volume Mixer
ID ghpkofodokpkakhbdbbeofmnomfikgon
官方URL https://chromewebstore.google.com/detail/volume-mixer/ghpkofodokpkakhbdbbeofmnomfikgon
简介 A chrome extension to control volume per tab
文件大小 721 KB
安装次数 2,849
当前版本 1.0.3
更新时间 2024-01-19
上架时间 2021-05-16
评分 3.00/5 共10次评分
开发者 Gagan Bindoria
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension to control volume per tab",
    "version": "1.0.3",
    "manifest_version": 3,
    "name": "Volume Mixer",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "html2canvas.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png",
                "html2canvas.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}