Color Grab

Steal beautiful colors from Dribbble easily.

Was ist Color Grab?

Color Grab ist eine Chrome-Erweiterung, die von tekeste.kidanu entwickelt wurde, und ihr Hauptmerkmal ist "Steal beautiful colors from Dribbble easily.".

Erweiterungsscreenshots

Color Grab-Erweiterungs-CRX-Datei herunterladen

Laden Sie Color Grab-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

                        This extension makes copying colors from Dribbble shots as easy a single click. 
Click your favorite color from the chips next to a shot and the Hex code is available on your clipboard!                    

Grundlegende Informationen zur Erweiterung

Name Color Grab Color Grab
ID aiamoeimgpbjfhmagepggjdickchgpfd
Offizielle URL https://chromewebstore.google.com/detail/color-grab/aiamoeimgpbjfhmagepggjdickchgpfd
Beschreibung Steal beautiful colors from Dribbble easily.
Dateigröße 46.97 KB
Installationsanzahl 698
Aktuelle Version 1.0
Letztes Update 2018-07-06
Veröffentlichungsdatum 2018-07-06
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler tekeste.kidanu
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Color Grab",
    "description": "Steal beautiful colors from Dribbble easily.",
    "version": "1.0",
    "homepage_url": "https:\/\/twitter.com\/iamtekeste",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "128-icon.png"
    },
    "permissions": [
        "activeTab",
        "https:\/\/dribbble.com\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/dribbble.com\/*"
            ],
            "css": [
                "tippy.css",
                "content.css"
            ],
            "js": [
                "tippy.min.js",
                "bundle.js"
            ]
        }
    ]
}