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
Eメール [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": [
                ""
            ]
        }
    ]
}