Tailwind Color Picker

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

Hvad er Tailwind Color Picker?

Tailwind Color Picker er en Chrome-udvidelse udviklet af hassan4709, og dens hovedfunktion er "Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.".

Udvidelsesskærmbilleder

screenshot

Download Tailwind Color Picker-udvidelses-CRX-fil

Download Tailwind Color Picker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Tailwind Color Picker Tailwind Color Picker
ID iaknbjonlhaajcfpfcimahgpfknpihfm
Officiel URL https://chromewebstore.google.com/detail/tailwind-color-picker/iaknbjonlhaajcfpfcimahgpfknpihfm
Beskrivelse Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.
Filstørrelse 345 KB
Antal Installationer 1,335
Nuværende Version 1.0.1
Senest Opdateret 2023-02-01
Udgivelsesdato 2023-01-17
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler hassan4709
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://twitter.com/nutlope
Understøttede Sprog 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": [
                ""
            ]
        }
    ]
}