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
电子邮箱 [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"
    }
}