Colors Dev Panel

Colors, in your dev inspector

Cos'è Colors Dev Panel?

Colors Dev Panel è un'estensione di Chrome sviluppata da Roy Kolak, e la sua funzione principale è "Colors, in your dev inspector".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Colors Dev Panel

Scarica i file di estensione Colors Dev Panel in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Colors Dev Panel Colors Dev Panel
ID bgmflgfbiohkjpmoglkmfadokpichgln
URL Ufficiale https://chrome.google.com/webstore/detail/colors-dev-panel/bgmflgfbiohkjpmoglkmfadokpichgln
Descrizione Colors, in your dev inspector
Dimensione del File 344 KB
Conteggio Installazioni 134
Versione Corrente 1.2.1
Ultimo Aggiornamento 2014-03-31
Data di Pubblicazione 2014-03-31
Valutazione 3.40/5 Totale 5 Valutazioni
Sviluppatore Roy Kolak
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}