取色器(纯净版)

纯净简约的网页取色器

Apa itu 取色器(纯净版)?

取色器(纯净版) adalah ekstensi Chrome yang dikembangkan oleh elegantYU, dan fitur utamanya adalah "纯净简约的网页取色器".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi 取色器(纯净版)

Unduh file ekstensi 取色器(纯净版) dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

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

Informasi Dasar Ekstensi

Nama 取色器(纯净版) 取色器(纯净版)
ID lkfniiefogmonnkjeaceppmeakpagfmg
URL Resmi 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
Deskripsi 纯净简约的网页取色器
Ukuran File 110 KB
Jumlah Instalasi 1,000
Versi Saat Ini 1.4.2
Terakhir Diperbarui 2021-03-17
Tanggal Publikasi 2020-06-14
Penilaian 5.00/5 Total 1 Penilaian
Pengembang elegantYU
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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'"
}