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
官方網址 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": [
                ""
            ]
        }
    ]
}