Website Color Palette

The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…

Website Color Paletteとは何ですか?

Website Color PaletteはForwardsによって開発されたChromeの拡張機能で、その主な機能は「The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Website Color Palette拡張機能のCRXファイルをダウンロード

Website Color Palette拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        The first extension that takes the real colors of the web page you are viewing.

- Multiple color formats: rgb, hexadecimal, hsl and more...
- Copy the color instantly (on click).
- No waiting times: 5 milliseconds.
- No fake or random colors.                    

拡張機能の基本情報

名前 Website Color Palette Website Color Palette
ID kegbegkdllkghhaibpbgoeakihgjbmka
公式URL https://chromewebstore.google.com/detail/website-color-palette/kegbegkdllkghhaibpbgoeakihgjbmka
説明 The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…
ファイルサイズ 48.12 KB
インストール数 731
現在のバージョン 0.1.0
最終更新日 2020-12-14
公開日 2020-12-13
評価 4.33/5 合計 3 レビュー
開発者 Forwards
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://websitecolorpalette.com
ヘルプページのURL https://websitecolorpalette.com/contact
プライバシーポリシーページのURL http://websitecolorpalette.com/privacy-policy
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Website Color Palette",
    "manifest_version": 2,
    "version": "0.1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "chroma.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_popup": ".\/popup\/index.html",
        "default_title": "Website Color Palette"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}