Image Dimmer

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

Co je Image Dimmer?

Image Dimmer je rozšíření Chrome vyvinuté 09 Labs, a jeho hlavní funkcí je „Dim images on the page while using a dark reader or dark mode“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Image Dimmer

Stáhněte si soubory rozšíření Image Dimmer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Image Dimmer Image Dimmer
ID hmjfhbkkkepekaoeofmapchghbmonbbf
Oficiální URL https://chrome.google.com/webstore/detail/image-dimmer/hmjfhbkkkepekaoeofmapchghbmonbbf
Popis Dim images on the page while using a dark reader or dark mode
Velikost souboru 21.27 KB
Počet instalací 89
Aktuální Verze 0.1.0
Poslední Aktualizace 2020-07-04
Datum Vydání 2020-07-04
Hodnocení 3.60/5 Celkem 5 Hodnocení
Vývojář 09 Labs
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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:\/\/*\/*"
    ]
}