Tailwind Color Picker

Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.

Cos'è Tailwind Color Picker?

Tailwind Color Picker è un'estensione di Chrome sviluppata da hassan4709, e la sua funzione principale è "Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Tailwind Color Picker

Scarica i file di estensione Tailwind Color Picker 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

                        This chrome extension will calculate the closest Tailwind color in any website you open it in so you can quickly prototype.                    

Informazioni di Base sull'Estensione

Nome Tailwind Color Picker Tailwind Color Picker
ID iaknbjonlhaajcfpfcimahgpfknpihfm
URL Ufficiale https://chromewebstore.google.com/detail/tailwind-color-picker/iaknbjonlhaajcfpfcimahgpfknpihfm
Descrizione Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.
Dimensione del File 345 KB
Conteggio Installazioni 1,335
Versione Corrente 1.0.1
Ultimo Aggiornamento 2023-02-01
Data di Pubblicazione 2023-01-17
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore hassan4709
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://twitter.com/nutlope
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tailwind Color Picker",
    "short_name": "TailwindColorPicker",
    "version": "1.0.1",
    "manifest_version": 3,
    "description": "Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.",
    "homepage_url": "https:\/\/github.com\/nutlope\/tailwind-color-picker",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Click the icon",
        "name": "Click to invoke the inspector"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "commands": {
        "toggle-inspector": {
            "suggested_key": {
                "windows": "Ctrl+Shift+X",
                "linux": "Ctrl+Shift+X",
                "mac": "Command+Shift+X",
                "chromeos": "Ctrl+Shift+X"
            },
            "description": "Toggle the inspector"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}