Chrome Color Picker

A chrome debugger style color picker plugin

Cos'è Chrome Color Picker?

Chrome Color Picker è un'estensione di Chrome sviluppata da guowenfh, e la sua funzione principale è "A chrome debugger style color picker plugin".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Chrome Color Picker

Scarica i file di estensione Chrome Color Picker 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

                        A Chrome DevTools  debugger style color picker plugin.

After installation, you need to refresh the page to be picked. Use `Alt + Shift + A` to quickly call / close the color picker.

Strongly powered by pnpm + vue3 + vite. Use EyeDropper to support global color selection !

source:https://github.com/guowenfh/chrome-color-picker

FAQ: If you can't use the plugin the first time you install it, just refresh the page!


一款 Chrome 控制台调试器风格的取色器插件。
安装后需要刷新一下待取色页面, 使用 Alt+Shift+A 可以快捷呼出/关闭取色器。

使用 pnpm + vue3 + vite 强力驱动。使用 EyeDropper 支持全局进行颜色选取!

第一次安装无法使用插件的,刷新一下网页就可以了!                    

Informazioni di Base sull'Estensione

Nome Chrome Color Picker Chrome Color Picker
ID ojaclcbknieckfcapcbifaijoocfmpaj
URL Ufficiale https://chromewebstore.google.com/detail/chrome-color-picker/ojaclcbknieckfcapcbifaijoocfmpaj
Descrizione A chrome debugger style color picker plugin
Dimensione del File 93.1 KB
Conteggio Installazioni 4,479
Versione Corrente 2.3.0
Ultimo Aggiornamento 2023-08-04
Data di Pubblicazione 2020-03-29
Valutazione 4.10/5 Totale 10 Valutazioni
Sviluppatore guowenfh
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/guowenfh/chrome-color-picker
URL della Pagina di Aiuto https://github.com/guowenfh/chrome-color-picker/issues
Lingue Supportate zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Color Picker",
    "version": "2.3.0",
    "description": "A chrome debugger style color picker plugin",
    "browser_action": {
        "default_icon": ".\/assets\/icons\/48.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "background": {
        "page": ".\/dist\/background\/index.html",
        "persistent": false
    },
    "icons": {
        "16": ".\/assets\/icons\/16.png",
        "48": ".\/assets\/icons\/48.png",
        "128": ".\/assets\/icons\/128.png"
    },
    "permissions": [
        "tabs",
        "clipboardWrite",
        "storage",
        "activeTab",
        "contextMenus",
        ""
    ],
    "commands": {
        "color-picker-start": {
            "suggested_key": {
                "windows": "Alt + Shift + A",
                "mac": "MacCtrl + Shift + A"
            },
            "description": "Quick Color Pick-up"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/dist\/contentScripts\/index.global.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "dist\/contentScripts\/style.css"
    ]
}