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是由hassan4709开发的Chrome扩展程序,该扩展的主要功能是“Tailwind Color Picker allows you to pick a pixel from any web page and return the closest tailwind color.”。

扩展截图

screenshot

下载Tailwind Color Picker扩展crx文件

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