DG.Color

Adds a colorblind friendly color-picker to Google Chrome

What is DG.Color?

DG.Color is a Chrome extension developed by https://dennisvg.nl, and its main feature is "Adds a colorblind friendly color-picker to Google Chrome".

Extension Screenshots

screenshot

Download DG.Color Extension CRX File

Download DG.Color extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name DG.Color DG.Color
ID acbkjgjlmohijpimhcggjpchfpmngmdh
Official URL https://chromewebstore.google.com/detail/dgcolor/acbkjgjlmohijpimhcggjpchfpmngmdh
Description Adds a colorblind friendly color-picker to Google Chrome
File Size 325 KB
Installation Count 29
Current Version 1.1
Last Updated 2019-03-04
Publish Date 2019-02-28
Developer https://dennisvg.nl
Email [email protected]
Payment Type free
Supported Languages 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
}