any-color

Pick any pixel color from a web page

什麼是any-color?

any-color是由https://hankchiu.tw開發的Chrome擴展程式,該擴展的主要功能是“Pick any pixel color from a web page”。

擴展截圖

screenshot

下載any-color擴展crx文件

下載any-color擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A chrome extension let you pick up any pixel color from a web page.

- Inspired from chrome devtool's color picker.
- Toggle the color inspector by Alt+Shift+A.
- Turn off the color inspector by ESC.
- Click and copy the color hex.

## Why?
Most of the color picker extensions have these drawbacks: 
- Most of them are aimed at picking DOM colors. Can not pick image colors.
- Not efficient when I only want to pick colors.

## How to use
Install the extension and toggle the color inspector by Alt+Shift+A. That's it.

## How it works
Mainly it uses [captureVisibleTab](https://developer.chrome.com/extensions/tabs#method-captureVisibleTab) API to the take the page screenshot. The image data is rasterized and pixel colors are ready to use.

## License
[ Apache2 License ](LICENSE) © [hankchiu.tw](https://hankchiu.tw)                    

擴展基本資訊

名稱 any-color any-color
ID cmehpadapglhhambdiafddpfjdngonba
官方網址 https://chromewebstore.google.com/detail/any-color/cmehpadapglhhambdiafddpfjdngonba
簡介 Pick any pixel color from a web page
檔案大小 227 KB
安裝次數 168
目前版本 0.3.0
更新時間 2020-11-25
上架時間 2020-06-23
評分 5.00/5 共 1 次評分
開發者 https://hankchiu.tw
電子郵箱 [email protected]
付費類型 free
擴展官網 https://any-color.vercel.app
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "any-color",
    "short_name": "AnyColor",
    "version": "0.3.0",
    "manifest_version": 2,
    "description": "Pick any pixel color from a web page",
    "homepage_url": "https:\/\/github.com\/hankchiutw\/any-color",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Click or press Alt+Shift+A to launch AnyColor",
        "name": "Click to launch AnyColor"
    },
    "permissions": [
        "activeTab"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+A",
                "mac": "Alt+Shift+A"
            },
            "description": "Toggle AnyColor"
        }
    },
    "web_accessible_resources": [
        "assets\/*"
    ]
}