Volume Mixer

Allows for the changing of individual tab volume

Что такое Volume Mixer?

Volume Mixer - это расширение Chrome, разработанное Nick K, и его основная функция - "Allows for the changing of individual tab volume".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Volume Mixer

Скачайте файлы расширений 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"
    }
}