Image Dimmer

Dim images on the page while using a dark reader or dark mode

Co to jest Image Dimmer?

Image Dimmer to rozszerzenie Chrome opracowane przez 09 Labs, a jego główną funkcją jest „Dim images on the page while using a dark reader or dark mode”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Image Dimmer

Pobierz pliki rozszerzeń Image Dimmer 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

                        Image Dimmer reduces the brightness of images when you are browsing the internet in dark mode making reading much more comfortable. Simply hover over a dimmed image to view brighten it.                    

Podstawowe informacje o rozszerzeniu

Nazwa Image Dimmer Image Dimmer
ID hmjfhbkkkepekaoeofmapchghbmonbbf
Oficjalny URL https://chrome.google.com/webstore/detail/image-dimmer/hmjfhbkkkepekaoeofmapchghbmonbbf
Opis Dim images on the page while using a dark reader or dark mode
Rozmiar pliku 21.27 KB
Liczba instalacji 89
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2020-07-04
Data Publikacji 2020-07-04
Ocena 3.60/5 Łącznie 5 Oceny
Deweloper 09 Labs
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Image Dimmer",
    "version": "0.1.0",
    "description": "Dim images on the page while using a dark reader or dark mode",
    "content_scripts": [
        {
            "js": [
                "js\/mute.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/image-mute-128.png",
        "default_title": "Image Dimmer",
        "default_popup": "index.html"
    },
    "icons": {
        "16": "images\/image-mute-16.png",
        "48": "images\/image-mute-48.png",
        "128": "images\/image-mute-128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "commands": {
        "toggle-image-dimmer": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A",
                "windows": "Ctrl+Shift+A",
                "chromeos": "Ctrl+Shift+A",
                "linux": "Ctrl+Shift+A"
            },
            "description": "Toggle Image Dimmer"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+H",
                "mac": "Command+Shift+H",
                "chromeos": "Ctrl+Shift+H",
                "linux": "Ctrl+Shift+H"
            }
        }
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}