Color Picker - Eyedropper Tool

Pick colors from web pages with Eyedropper. Color picker, gradient generator, color palette. Quickly grab HEX, RGB colors.

Co je Color Picker - Eyedropper Tool?

Color Picker - Eyedropper Tool je rozšíření Chrome vyvinuté ColorPickerr, a jeho hlavní funkcí je „Pick colors from web pages with Eyedropper. Color picker, gradient generator, color palette. Quickly grab HEX, RGB colors.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Color Picker - Eyedropper Tool

Stáhněte si soubory rozšíření Color Picker - Eyedropper Tool ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Color Picker and Eyedropper Tool is a must-have browser extension for web developers, designers, and anyone who needs to choose colors from a webpage or extract a website's color palette. 

Whether you're creating a website, designing graphics, or working on a digital project, Color Picker will make the process of color selection easier and faster.

Features:
- Employ zoom technology to select and store multiple colors from any website;
- Tailor your color picker keyboard shortcut in the settings (default: Cmd/Ctrl + Shift + e);
- Set the color picker as the default choice in the options;
- Archive your preferred colors and gradients; a single click on any color stores its HEX value in your clipboard;
- Discover variations such as shades, tints, complementary hues, and other color combinations for any chosen color;
- Generate linear or radial gradients with an unlimited number of stops;
- Explore a vast collection of exquisite gradients, modify them, save them, and conveniently copy their CSS code whenever necessary;
- Obtain color palettes from any gradient you create;
- The site palette feature retrieves all the colors present on any webpage;
- Personalize the color type for automatic copying.

Great for any designer, the Color Picker (Eyedropper) is a Chrome extension that easily allows you to identify the Hex colour code of any UI element you hover your mouse over. It's great for quick access to colours you gain inspiration from when browsing online.

This extension stores the last six selected colors and represents the color in HEX,  RGBA, HSVA, HSLA, and CMYK formats. You can press a button to copy the vcurrent color value into the clipboard.

Whether you're a using extension to generate conversion focused ad creatives, or just looking to add some color to your everyday browsing, the ColorPick is the perfect tool. 

Try using our software Color Picker to find the color codes for any pixel today.                    

Základní Informace o Rozšíření

Název Color Picker - Eyedropper Tool Color Picker - Eyedropper Tool
ID phillbeieoddghchonmfebjhclflpoaj
Oficiální URL https://chromewebstore.google.com/detail/color-picker-eyedropper-t/phillbeieoddghchonmfebjhclflpoaj
Popis Pick colors from web pages with Eyedropper. Color picker, gradient generator, color palette. Quickly grab HEX, RGB colors.
Velikost souboru 1.23 MB
Počet instalací 20,000
Aktuální Verze 1.0.2
Poslední Aktualizace 2024-01-27
Datum Vydání 2023-10-30
Hodnocení 4.87/5 Celkem 829 Hodnocení
Vývojář ColorPickerr
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://sites.google.com/view/colorpickerr/privacy-policy
Podporované Jazyky id,ms,de,en,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "description": "__MSG_desc__",
    "default_locale": "en",
    "manifest_version": 3,
    "version": "1.0.2",
    "action": {
        "default_popup": "popup.html",
        "default_title": "Color Picker"
    },
    "icons": {
        "128": "assets\/icon128.png",
        "64": "assets\/icon64.png",
        "32": "assets\/icon32.png",
        "19": "assets\/icon19.png"
    },
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Get colors from web page."
        }
    },
    "background": {
        "service_worker": "worker.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; media-src *;"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "options_page": "settings.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/javascripts\/picker.js"
            ],
            "css": [
                ".\/picker.css"
            ]
        }
    ]
}