DG.Color

Adds a colorblind friendly color-picker to Google Chrome

Was ist DG.Color?

DG.Color ist eine Chrome-Erweiterung, die von https://dennisvg.nl entwickelt wurde, und ihr Hauptmerkmal ist "Adds a colorblind friendly color-picker to Google Chrome".

Erweiterungsscreenshots

screenshot

DG.Color-Erweiterungs-CRX-Datei herunterladen

Laden Sie DG.Color-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

                        An easy to use color-picker, that's colorblind friendly by showing the base color (red, orange, yellow, brown, lime, green, cyan, blue, violet, purple, pink, red, black, gray and white) of anything you're currently hovering with your mouse.

Use the arrow keys for extra precision.                    

Grundlegende Informationen zur Erweiterung

Name DG.Color DG.Color
ID acbkjgjlmohijpimhcggjpchfpmngmdh
Offizielle URL https://chromewebstore.google.com/detail/dgcolor/acbkjgjlmohijpimhcggjpchfpmngmdh
Beschreibung Adds a colorblind friendly color-picker to Google Chrome
Dateigröße 325 KB
Installationsanzahl 29
Aktuelle Version 1.1
Letztes Update 2019-03-04
Veröffentlichungsdatum 2019-02-28
Entwickler https://dennisvg.nl
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DG.Color",
    "description": "Adds a colorblind friendly color-picker to Google Chrome",
    "version": "1.1",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_title": "DG.Color",
        "default_icon": "images\/icon-32.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "inject.css"
            ],
            "js": [
                "inject.js"
            ],
            "match_about_blank": true
        }
    ],
    "web_accessible_resources": [
        "fonts\/*.ttf"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "manifest_version": 2
}