Video Brightness Adjuster

Adjusts the brightness of the video to make dark scenes more visible.

Что такое Video Brightness Adjuster?

Video Brightness Adjuster - это расширение Chrome, разработанное あんこだま, и его основная функция - "Adjusts the brightness of the video to make dark scenes more visible.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Video Brightness Adjuster

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

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

                        You can adjust the brightness when scenes in movies and the like are dark and difficult to see. It's possible to adjust three types: brightness, contrast, and saturation.                    

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

Название Video Brightness Adjuster Video Brightness Adjuster
ID enphljmfhkhhfiphjclikhmclddopmpe
Официальный URL https://chromewebstore.google.com/detail/video-brightness-adjuster/enphljmfhkhhfiphjclikhmclddopmpe
Описание Adjusts the brightness of the video to make dark scenes more visible.
Размер файла 78.54 KB
Количество установок 211
Текущая Версия 1.2.0
Последнее Обновление 2023-06-19
Дата публикации 2023-05-10
Рейтинг 3.00/5 Всего 2 оценок
Разработчик あんこだま
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extensionName__",
    "version": "1.2.0",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "description": "__MSG_extensionDescription__",
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "scripts\/content.js"
            ]
        }
    ]
}