Mute Tab Helper
This extension helps manage tab audio state
Что такое Mute Tab Helper?
Mute Tab Helper - это расширение Chrome, разработанное Jean-Lou Dupont (systemical), и его основная функция - "This extension helps manage tab audio state".
Скачать файл CRX расширения Mute Tab Helper
Скачайте файлы расширений Mute Tab Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Are you tired of annoying pages that load and start playing audio right away ? By default, when a tab gets loaded with a new domain (one not already tracked by the extension), the audio state will be muted (state: perma-mute). The user has now the following choices: * The user can mute/unmute the domain visited in the browser tab through the extension's browser action button * The user can mute/unmute the tab through the usual tab menu - this action will not affect the state maintained by the extension
Основная информация о расширении
Название | Mute Tab Helper |
ID | jefhmnjbjemabbmakhmpmlnpfmcdjdfh |
Официальный URL | https://chromewebstore.google.com/detail/mute-tab-helper/jefhmnjbjemabbmakhmpmlnpfmcdjdfh |
Описание | This extension helps manage tab audio state |
Размер файла | 19.22 KB |
Количество установок | 73 |
Текущая Версия | 0.0.1 |
Последнее Обновление | 2016-09-02 |
Дата публикации | 2016-09-02 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Jean-Lou Dupont (systemical) |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mute Tab Helper", "description": "This extension helps manage tab audio state", "version": "0.0.1", "icons": { "128": "perma-unmute-128.png" }, "browser_action": { "default_title": "Mute Helper", "default_icon": { "38": "perma-unmute-38.png" } }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "storage", "tabs" ] } |