Volume Mixer

Allows for the changing of individual tab volume

Volume Mixerとは何ですか?

Volume MixerはNick Kによって開発されたChromeの拡張機能で、その主な機能は「Allows for the changing of individual tab volume」です。

拡張機能のスクリーンショット

screenshot

Volume Mixer拡張機能のCRXファイルをダウンロード

Volume Mixer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension is a simple volume mixer that allows the user to change the volume of individual tabs as well as the master volume of all tabs from a simple popup UI in the right hand corner of the screen. To use, just click on the mixer icon, and select which volume level you wish to set for each tab. 

Note: This extension currently works only with HTML video and audio elements (does not work with Flash). It might be necessary to use another extension to force websites to use HTML5. 

If you find any bugs, or have any feedback in general about this app, email [email protected] and I will try to help you with any issues.                    

拡張機能の基本情報

名前 Volume Mixer Volume Mixer
ID nndlkolppogjamclcghenckmillbpoei
公式URL https://chrome.google.com/webstore/detail/volume-mixer/nndlkolppogjamclcghenckmillbpoei
説明 Allows for the changing of individual tab volume
ファイルサイズ 94.91 KB
インストール数 7,000
現在のバージョン 1.0
最終更新日 2016-05-10
公開日 2016-05-10
評価 1.74/5 合計 66 レビュー
開発者 Nick K
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Volume Mixer",
    "description": "Allows for the changing of individual tab volume",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "volumechange.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png",
        "256": "icon256.png"
    }
}