Website Color Palette

The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…

Cos'è Website Color Palette?

Website Color Palette è un'estensione di Chrome sviluppata da Forwards, e la sua funzione principale è "The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Website Color Palette

Scarica i file di estensione Website Color Palette 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 first extension that takes the real colors of the web page you are viewing.

- Multiple color formats: rgb, hexadecimal, hsl and more...
- Copy the color instantly (on click).
- No waiting times: 5 milliseconds.
- No fake or random colors.                    

Informazioni di Base sull'Estensione

Nome Website Color Palette Website Color Palette
ID kegbegkdllkghhaibpbgoeakihgjbmka
URL Ufficiale https://chromewebstore.google.com/detail/website-color-palette/kegbegkdllkghhaibpbgoeakihgjbmka
Descrizione The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…
Dimensione del File 48.12 KB
Conteggio Installazioni 731
Versione Corrente 0.1.0
Ultimo Aggiornamento 2020-12-14
Data di Pubblicazione 2020-12-13
Valutazione 4.33/5 Totale 3 Valutazioni
Sviluppatore Forwards
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://websitecolorpalette.com
URL della Pagina di Aiuto https://websitecolorpalette.com/contact
URL della Pagina della Politica sulla Privacy http://websitecolorpalette.com/privacy-policy
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Website Color Palette",
    "manifest_version": 2,
    "version": "0.1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "chroma.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_popup": ".\/popup\/index.html",
        "default_title": "Website Color Palette"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}