取色器(纯净版)

纯净简约的网页取色器

What is 取色器(纯净版)?

取色器(纯净版) is a Chrome extension developed by elegantYU, and its main feature is "纯净简约的网页取色器".

Extension Screenshots

screenshot
screenshot

Download 取色器(纯净版) Extension CRX File

Download 取色器(纯净版) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        - 快捷识别网页中的所有颜色,点击即可复制;
- 支持多种颜色格式;
- 保存7天内的识别颜色;
- Alt + C 快捷键启动识别。

项目已开源:https://github.com/elegantYU/color-picker
求star支持下🤘                    

Extension Basic Information

Name 取色器(纯净版) 取色器(纯净版)
ID lkfniiefogmonnkjeaceppmeakpagfmg
Official URL https://chrome.google.com/webstore/detail/%E5%8F%96%E8%89%B2%E5%99%A8%E7%BA%AF%E5%87%80%E7%89%88/lkfniiefogmonnkjeaceppmeakpagfmg
Description 纯净简约的网页取色器
File Size 110 KB
Installation Count 1,000
Current Version 1.4.2
Last Updated 2021-03-17
Publish Date 2020-06-14
Rating 5.00/5 Total 1 Ratings
Developer elegantYU
Email [email protected]
Payment Type free
Supported Languages en,fr,es,ru,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.4.2",
    "manifest_version": 2,
    "minimum_chrome_version": "56.0.0",
    "name": "__MSG_name__",
    "short_name": "__MSG_shortName__",
    "description": "__MSG_description__",
    "offline_enabled": true,
    "default_locale": "zh_CN",
    "icons": {
        "16": "static\/icons\/icon16.png",
        "48": "static\/icons\/icon48.png",
        "128": "static\/icons\/icon128.png"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/static\/js\/vendor.bundle.js",
                ".\/static\/js\/contentScript.js",
                ".\/static\/js\/style.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": [],
        "default_popup": "popup.html",
        "default_title": "__MSG_name__"
    },
    "permissions": [
        "",
        "tabs",
        "storage",
        "activeTab",
        "contextMenus",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        "static\/js\/*"
    ],
    "commands": {
        "start-color-picker": {
            "suggested_key": {
                "default": "Alt+C",
                "mac": "Alt+C"
            },
            "description": "Start page color-picker"
        }
    },
    "content_security_policy": "script-src 'self'; object-src 'self'"
}