取色器(纯净版)

纯净简约的网页取色器

Cos'è 取色器(纯净版)?

取色器(纯净版) è un'estensione di Chrome sviluppata da elegantYU, e la sua funzione principale è "纯净简约的网页取色器".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione 取色器(纯净版)

Scarica i file di estensione 取色器(纯净版) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

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

Informazioni di Base sull'Estensione

Nome 取色器(纯净版) 取色器(纯净版)
ID lkfniiefogmonnkjeaceppmeakpagfmg
URL Ufficiale 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
Descrizione 纯净简约的网页取色器
Dimensione del File 110 KB
Conteggio Installazioni 1,000
Versione Corrente 1.4.2
Ultimo Aggiornamento 2021-03-17
Data di Pubblicazione 2020-06-14
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore elegantYU
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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'"
}