Tailwind Color Picker

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

Qu'est-ce que Tailwind Color Picker ?

Tailwind Color Picker est une extension Chrome développée par hassan4709, et sa fonction principale est "Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Tailwind Color Picker

Téléchargez les fichiers d'extension Tailwind Color Picker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Tailwind Color Picker Tailwind Color Picker
ID iaknbjonlhaajcfpfcimahgpfknpihfm
URL Officiel https://chromewebstore.google.com/detail/tailwind-color-picker/iaknbjonlhaajcfpfcimahgpfknpihfm
Description Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.
Taille du Fichier 345 KB
Nombre d'Installations 1,335
Version Actuelle 1.0.1
Dernière Mise à Jour 2023-02-01
Date de Publication 2023-01-17
Évaluation 5.00/5 Total 3 Évaluations
Développeur hassan4709
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://twitter.com/nutlope
Langues Prises en Charge 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": [
                ""
            ]
        }
    ]
}