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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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": [
                ""
            ]
        }
    ]
}