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