取色器(纯净版)

纯净简约的网页取色器

什麼是取色器(纯净版)?

取色器(纯净版)是由elegantYU開發的Chrome擴展程式,該擴展的主要功能是“纯净简约的网页取色器”。

擴展截圖

screenshot
screenshot

下載取色器(纯净版)擴展crx文件

下載取色器(纯净版)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

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

擴展基本資訊

名稱 取色器(纯净版) 取色器(纯净版)
ID lkfniiefogmonnkjeaceppmeakpagfmg
官方網址 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
簡介 纯净简约的网页取色器
檔案大小 110 KB
安裝次數 1,000
目前版本 1.4.2
更新時間 2021-03-17
上架時間 2020-06-14
評分 5.00/5 共 1 次評分
開發者 elegantYU
電子郵箱 [email protected]
付費類型 free
支援的語言 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'"
}