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