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
官方網址 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"
    }
}