Grayscale Screen

Converts the screen to grayscale

Was ist Grayscale Screen?

Grayscale Screen ist eine Chrome-Erweiterung, die von paperlite831 entwickelt wurde, und ihr Hauptmerkmal ist "Converts the screen to grayscale".

Erweiterungsscreenshots

screenshot
screenshot

Grayscale Screen-Erweiterungs-CRX-Datei herunterladen

Laden Sie Grayscale Screen-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        In the modern age of technology, where we spend significant time in front of screens, eye strain has become a common concern. The Greyscale Extension offers a unique solution to alleviate eye strain and promote visual comfort. By converting webpages to greyscale, it reduces the harsh contrast and vibrant colors that can strain the eyes. The subtle shades of grey create a more soothing and balanced visual experience. This not only helps individuals with existing eye conditions but also prevents potential eye strain for those who spend long hours browsing the internet. With the Greyscale Extension, users can enjoy a more relaxed and comfortable browsing experience while prioritizing their eye health in the digital era.                    

Grundlegende Informationen zur Erweiterung

Name Grayscale Screen Grayscale Screen
ID mccgphkdghdpebkjkokhbodbjobpihal
Offizielle URL https://chromewebstore.google.com/detail/grayscale-screen/mccgphkdghdpebkjkokhbodbjobpihal
Beschreibung Converts the screen to grayscale
Dateigröße 6.94 KB
Installationsanzahl 185
Aktuelle Version 1.0
Letztes Update 2023-06-05
Veröffentlichungsdatum 2023-06-04
Bewertung 2.75/5 Insgesamt 4 Bewertungen
Entwickler paperlite831
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Grayscale Screen",
    "version": "1.0",
    "description": "Converts the screen to grayscale",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "icons": {
        "48": "icon48.png"
    },
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon48.png"
        }
    },
    "commands": {
        "toggle-grayscale": {
            "suggested_key": {
                "default": "Ctrl+Shift+G",
                "mac": "MacCtrl+Shift+G"
            },
            "description": "Toggle Grayscale"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "popup.html",
                "popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}