ColorThief

Extracts a color palette from an image

Qu'est-ce que ColorThief ?

ColorThief est une extension Chrome développée par Mohamad Ahmadi, et sa fonction principale est "Extracts a color palette from an image".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension ColorThief

Téléchargez les fichiers d'extension ColorThief au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom ColorThief ColorThief
ID medkdmfcfbfkbekkgcafeojmkadhidln
URL Officiel https://chrome.google.com/webstore/detail/colorthief/medkdmfcfbfkbekkgcafeojmkadhidln
Description Extracts a color palette from an image
Taille du Fichier 807 KB
Nombre d'Installations 123
Version Actuelle 0.2.0
Dernière Mise à Jour 2015-01-05
Date de Publication 2015-01-05
Évaluation 4.50/5 Total 2 Évaluations
Développeur Mohamad Ahmadi
Type de Paiement free
Site Web de l'Extension https://github.com/mhahmadi/ColorThiefExtension
URL de la Page d'Aide https://github.com/mhahmadi/ColorThiefExtension/issues
Langues Prises en Charge 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"
    ]
}