Tailwind Color Picker

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

Vad är Tailwind Color Picker?

Tailwind Color Picker är en Chrome-tillägg utvecklad av hassan4709, och dess huvudfunktion är "Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.".

Tilläggsskärmbilder

screenshot

Ladda ner Tailwind Color Picker-förlängningens CRX-fil

Ladda ner Tailwind Color Picker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Tailwind Color Picker Tailwind Color Picker
ID iaknbjonlhaajcfpfcimahgpfknpihfm
Officiell webbadress https://chromewebstore.google.com/detail/tailwind-color-picker/iaknbjonlhaajcfpfcimahgpfknpihfm
Beskrivning Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.
Filstorlek 345 KB
Antal Installationer 1,335
Aktuell Version 1.0.1
Senast Uppdaterad 2023-02-01
Publiceringsdatum 2023-01-17
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare hassan4709
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://twitter.com/nutlope
Stödda Språk 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": [
                ""
            ]
        }
    ]
}