Color Grab

Steal beautiful colors from Dribbble easily.

Co to jest Color Grab?

Color Grab to rozszerzenie Chrome opracowane przez tekeste.kidanu, a jego główną funkcją jest „Steal beautiful colors from Dribbble easily.”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Color Grab

Pobierz pliki rozszerzeń Color Grab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Color Grab Color Grab
ID aiamoeimgpbjfhmagepggjdickchgpfd
Oficjalny URL https://chromewebstore.google.com/detail/color-grab/aiamoeimgpbjfhmagepggjdickchgpfd
Opis Steal beautiful colors from Dribbble easily.
Rozmiar pliku 46.97 KB
Liczba instalacji 698
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2018-07-06
Data Publikacji 2018-07-06
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper tekeste.kidanu
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}