Tailwind Color Picker

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

Wat is Tailwind Color Picker?

Tailwind Color Picker is een Chrome-extensie ontwikkeld door hassan4709, en de belangrijkste functie is "Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Tailwind Color Picker

Download Tailwind Color Picker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Tailwind Color Picker Tailwind Color Picker
ID iaknbjonlhaajcfpfcimahgpfknpihfm
Officiële URL https://chromewebstore.google.com/detail/tailwind-color-picker/iaknbjonlhaajcfpfcimahgpfknpihfm
Beschrijving Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.
Bestandsgrootte 345 KB
Aantal Installaties 1,335
Huidige Versie 1.0.1
Laatst Bijgewerkt 2023-02-01
Publicatiedatum 2023-01-17
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar hassan4709
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://twitter.com/nutlope
Ondersteunde Talen 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": [
                ""
            ]
        }
    ]
}