ColorThief

Extracts a color palette from an image

Co to jest ColorThief?

ColorThief to rozszerzenie Chrome opracowane przez Mohamad Ahmadi, a jego główną funkcją jest „Extracts a color palette from an image”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia ColorThief

Pobierz pliki rozszerzeń ColorThief 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

                        Created using Color Thief script (http://lokeshdhakar.com/projects/color-thief/)                    

Podstawowe informacje o rozszerzeniu

Nazwa ColorThief ColorThief
ID medkdmfcfbfkbekkgcafeojmkadhidln
Oficjalny URL https://chrome.google.com/webstore/detail/colorthief/medkdmfcfbfkbekkgcafeojmkadhidln
Opis Extracts a color palette from an image
Rozmiar pliku 807 KB
Liczba instalacji 123
Aktualna Wersja 0.2.0
Ostatnia Aktualizacja 2015-01-05
Data Publikacji 2015-01-05
Ocena 4.50/5 Łącznie 2 Oceny
Deweloper Mohamad Ahmadi
Typ Płatności free
Strona Rozszerzenia https://github.com/mhahmadi/ColorThiefExtension
Adres URL Strony Pomocy https://github.com/mhahmadi/ColorThiefExtension/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ColorThief",
    "version": "0.2.0",
    "manifest_version": 2,
    "description": "Extracts a color palette from an image",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/thief-19.png",
            "38": "images\/thief-38.png"
        },
        "default_title": "ColorThief"
    },
    "icons": {
        "16": "images\/thief-16.png",
        "48": "images\/thief-48.png",
        "128": "images\/thief-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "bower_components\/jQuery\/dist\/jquery.min.js",
                "bower_components\/jQuery\/dist\/jquery.min.map",
                "bower_components\/handlebars\/handlebars.min.js",
                "bower_components\/color-thief\/dist\/color-thief.min.js",
                "content-script.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab"
    ],
    "web_accessible_resources": [
        "thief.png",
        "control-panel.html",
        "palette.html"
    ]
}