Video Brightness Adjuster

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

Co to jest Video Brightness Adjuster?

Video Brightness Adjuster to rozszerzenie Chrome opracowane przez あんこだま, a jego główną funkcją jest „Adjusts the brightness of the video to make dark scenes more visible.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Video Brightness Adjuster

Pobierz pliki rozszerzeń Video Brightness Adjuster w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Video Brightness Adjuster Video Brightness Adjuster
ID enphljmfhkhhfiphjclikhmclddopmpe
Oficjalny URL https://chromewebstore.google.com/detail/video-brightness-adjuster/enphljmfhkhhfiphjclikhmclddopmpe
Opis Adjusts the brightness of the video to make dark scenes more visible.
Rozmiar pliku 78.54 KB
Liczba instalacji 211
Aktualna Wersja 1.2.0
Ostatnia Aktualizacja 2023-06-19
Data Publikacji 2023-05-10
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper あんこだま
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}