Tailwind Color Picker

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

ما هو Tailwind Color Picker؟

Tailwind Color Picker هو إضافة Chrome تم تطويرها بواسطة hassan4709، والميزة الرئيسية لها هي "Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Tailwind Color Picker

قم بتنزيل ملفات الامتداد Tailwind Color Picker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Tailwind Color Picker Tailwind Color Picker
ID iaknbjonlhaajcfpfcimahgpfknpihfm
عنوان URL الرسمي https://chromewebstore.google.com/detail/tailwind-color-picker/iaknbjonlhaajcfpfcimahgpfknpihfm
الوصف Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.
حجم الملف 345 KB
عدد التثبيتات 1,335
النسخة الحالية 1.0.1
آخر تحديث 2023-02-01
تاريخ النشر 2023-01-17
تقييم 5.00/5 مجموع تقييمات 3
المطور hassan4709
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://twitter.com/nutlope
اللغات المدعومة 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": [
                ""
            ]
        }
    ]
}