Colors Dev Panel

Colors, in your dev inspector

Qu'est-ce que Colors Dev Panel ?

Colors Dev Panel est une extension Chrome développée par Roy Kolak, et sa fonction principale est "Colors, in your dev inspector".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Colors Dev Panel

Téléchargez les fichiers d'extension Colors Dev Panel 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

                        The Color Panel you have been searching for all your life... is here.

• Get the inspected site's palette of colors
• Modify any site's palette in real-time
• Precise color step control for manipulation
• Lighten and darken colors
• Saturate and desaturate colors
• Blend colors to find that perfect shade
• Convert between Hex, RGB, and HSL
• Easily copy colors to the clipboard
• View recently selected colors
• Explorable color schemas...
     - Complementary 
     - Split complementary
     - Triadic
     - Tetradic
     - Analogous
     - Neutral

Oh and it's Open Source!
https://github.com/roykolak/colors-dev-panel                    

Informations de Base sur l'Extension

Nom Colors Dev Panel Colors Dev Panel
ID bgmflgfbiohkjpmoglkmfadokpichgln
URL Officiel https://chrome.google.com/webstore/detail/colors-dev-panel/bgmflgfbiohkjpmoglkmfadokpichgln
Description Colors, in your dev inspector
Taille du Fichier 344 KB
Nombre d'Installations 134
Version Actuelle 1.2.1
Dernière Mise à Jour 2014-03-31
Date de Publication 2014-03-31
Évaluation 3.40/5 Total 5 Évaluations
Développeur Roy Kolak
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Colors Dev Panel",
    "short_name": "Colors Panels",
    "version": "1.2.1",
    "manifest_version": 2,
    "description": "Colors, in your dev inspector",
    "minimum_chrome_version": "29",
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "icons": {
        "16": "images\/icons\/icon16.png",
        "48": "images\/icons\/icon48.png",
        "128": "images\/icons\/icon128.png"
    },
    "permissions": [
        "clipboardWrite",
        "clipboardRead",
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/injected_colors.js"
            ]
        }
    ]
}