Persistent Video/Audio Volume

Saves video and audio volume

Что такое Persistent Video/Audio Volume?

Persistent Video/Audio Volume - это расширение Chrome, разработанное Pudding, и его основная функция - "Saves video and audio volume".

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

screenshot

Скачать файл CRX расширения Persistent Video/Audio Volume

Скачайте файлы расширений Persistent Video/Audio Volume в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        I hate websites playing video with 100% volume especially while wearing headphones. This chrome extension enables you to sets the video volume for each website separately. Just set the volume in the top right corner to you preferred level.

- Facebook.com
- 9gag.com
- Bandcamp.com
- ... and many more                    

Основная информация о расширении

Название Persistent Video/Audio Volume Persistent Video/Audio Volume
ID ppoliijncpdcgddmfibmgnjhegceaadj
Официальный URL https://chromewebstore.google.com/detail/persistent-videoaudio-vol/ppoliijncpdcgddmfibmgnjhegceaadj
Описание Saves video and audio volume
Размер файла 264 KB
Количество установок 2,786
Текущая Версия 0.10.1
Последнее Обновление 2020-08-23
Дата публикации 2020-02-09
Рейтинг 4.34/5 Всего 44 оценок
Разработчик Pudding
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/puddingspudding/persistent-video-volume
URL страницы помощи https://github.com/puddingspudding/persistent-video-volume
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Persistent Video\/Audio Volume",
    "version": "0.10.1",
    "manifest_version": 2,
    "description": "Saves video and audio volume",
    "permissions": [
        "storage",
        "tabs",
        ""
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png"
        }
    }
}