Color Palette Finder

Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.

什么是Color Palette Finder?

Color Palette Finder是由jamesaburnell开发的Chrome扩展程序,该扩展的主要功能是“Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.”。

扩展截图

screenshot

下载Color Palette Finder扩展crx文件

下载Color Palette Finder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Find the top 6 most commonly used colors on any site! Creates a palette of HEX and RGB values. Clicking on one of the colors will copy the HEX value to your clipboard.                    

扩展基本信息

名称 Color Palette Finder Color Palette Finder
ID acijagaddpagpgcjdcoigjkmeiengplp
官方URL https://chromewebstore.google.com/detail/color-palette-finder/acijagaddpagpgcjdcoigjkmeiengplp
简介 Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.
文件大小 28.27 KB
安装次数 898
当前版本 0.0.2
更新时间 2016-01-08
上架时间 2016-01-08
评分 2.60/5 共5次评分
开发者 jamesaburnell
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Color Palette Finder",
    "description": "Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.",
    "version": "0.0.2",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "cpflogo.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "palette-finder.js"
            ]
        }
    ]
}