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 là gì?

Tailwind Color Picker là một tiện ích mở rộng Chrome được phát triển bởi hassan4709, và tính năng chính của nó là "Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tailwind Color Picker

Tải xuống các tệp mở rộng Tailwind Color Picker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tailwind Color Picker Tailwind Color Picker
ID iaknbjonlhaajcfpfcimahgpfknpihfm
URL Chính Thức https://chromewebstore.google.com/detail/tailwind-color-picker/iaknbjonlhaajcfpfcimahgpfknpihfm
Mô tả Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.
Kích Thước Tệp 345 KB
Số Lần Cài Đặt 1,335
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2023-02-01
Ngày Phát Hành 2023-01-17
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển hassan4709
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://twitter.com/nutlope
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}